WebKit Bugzilla
Attachment 339758 Details for
Bug 185396
: Remove defunct email address
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-185396-20180507161222.patch (text/plain), 19.90 KB, created by
Andy VanWagoner
on 2018-05-07 15:12:23 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Andy VanWagoner
Created:
2018-05-07 15:12:23 PDT
Size:
19.90 KB
patch
obsolete
>Subversion Revision: 231456 >diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog >index fb2176fa3b51d9f8651b978d2fc78ae7bba88687..35ad357491f2dbcd905df7620c2d0e71058cade3 100644 >--- a/Source/JavaScriptCore/ChangeLog >+++ b/Source/JavaScriptCore/ChangeLog >@@ -1,3 +1,45 @@ >+2018-05-07 Andy VanWagoner <andy@vanwagoner.family> >+ >+ Remove defunct email address >+ https://bugs.webkit.org/show_bug.cgi?id=185396 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ The email address thetalecrafter@gmail.com is no longer valid, as the >+ associated google account has been closed. This updates the email >+ address so questions about these Intl contributions go to the right >+ place. >+ >+ * builtins/DatePrototype.js: >+ * builtins/NumberPrototype.js: >+ * builtins/StringPrototype.js: >+ * runtime/IntlCollator.cpp: >+ * runtime/IntlCollator.h: >+ * runtime/IntlCollatorConstructor.cpp: >+ * runtime/IntlCollatorConstructor.h: >+ * runtime/IntlCollatorPrototype.cpp: >+ * runtime/IntlCollatorPrototype.h: >+ * runtime/IntlDateTimeFormat.cpp: >+ * runtime/IntlDateTimeFormat.h: >+ * runtime/IntlDateTimeFormatConstructor.cpp: >+ * runtime/IntlDateTimeFormatConstructor.h: >+ * runtime/IntlDateTimeFormatPrototype.cpp: >+ * runtime/IntlDateTimeFormatPrototype.h: >+ * runtime/IntlNumberFormat.cpp: >+ * runtime/IntlNumberFormat.h: >+ * runtime/IntlNumberFormatConstructor.cpp: >+ * runtime/IntlNumberFormatConstructor.h: >+ * runtime/IntlNumberFormatPrototype.cpp: >+ * runtime/IntlNumberFormatPrototype.h: >+ * runtime/IntlObject.cpp: >+ * runtime/IntlObject.h: >+ * runtime/IntlPluralRules.cpp: >+ * runtime/IntlPluralRules.h: >+ * runtime/IntlPluralRulesConstructor.cpp: >+ * runtime/IntlPluralRulesConstructor.h: >+ * runtime/IntlPluralRulesPrototype.cpp: >+ * runtime/IntlPluralRulesPrototype.h: >+ > 2018-05-06 Yusuke Suzuki <utatane.tea@gmail.com> > > [JSC] Remove "using namespace std;" from JSC, bmalloc, WTF >diff --git a/Source/JavaScriptCore/builtins/DatePrototype.js b/Source/JavaScriptCore/builtins/DatePrototype.js >index 29c22cf5f2707532c8fcad373525e92b7713ddb1..800ce6c66cbb8478dd9ce1f8bbfd78fbbd7946b3 100644 >--- a/Source/JavaScriptCore/builtins/DatePrototype.js >+++ b/Source/JavaScriptCore/builtins/DatePrototype.js >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner <thetalecrafter@gmail.com>. >+ * Copyright (C) 2015 Andy VanWagoner <andy@vanwagoner.family>. > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/builtins/NumberPrototype.js b/Source/JavaScriptCore/builtins/NumberPrototype.js >index 435ea789b7138ddf16e8fe80cc8218b5fe28839b..c560a9be053bd172722f9505cf056eb903bdb566 100644 >--- a/Source/JavaScriptCore/builtins/NumberPrototype.js >+++ b/Source/JavaScriptCore/builtins/NumberPrototype.js >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner <thetalecrafter@gmail.com>. >+ * Copyright (C) 2015 Andy VanWagoner <andy@vanwagoner.family>. > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/builtins/StringPrototype.js b/Source/JavaScriptCore/builtins/StringPrototype.js >index 68d6376a3a987ebb917b5cda7d10dc51285e89dd..313e0250d8e865701b310bb171bab6b76cfbf6c3 100644 >--- a/Source/JavaScriptCore/builtins/StringPrototype.js >+++ b/Source/JavaScriptCore/builtins/StringPrototype.js >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner <thetalecrafter@gmail.com>. >+ * Copyright (C) 2015 Andy VanWagoner <andy@vanwagoner.family>. > * Copyright (C) 2016 Yusuke Suzuki <utatane.tea@gmail.com> > * Copyright (C) 2016 Apple Inc. All rights reserved. > * >diff --git a/Source/JavaScriptCore/runtime/IntlCollator.cpp b/Source/JavaScriptCore/runtime/IntlCollator.cpp >index b2d48a42f89f78cc06dcc7faa5795bc8bebfea78..7208b2d6888aceb05c4959900bb910abe87a9fcb 100644 >--- a/Source/JavaScriptCore/runtime/IntlCollator.cpp >+++ b/Source/JavaScriptCore/runtime/IntlCollator.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2015 Sukolsak Sakshuwong (sukolsak@gmail.com) > * Copyright (C) 2016-2017 Apple Inc. All Rights Reserved. > * >diff --git a/Source/JavaScriptCore/runtime/IntlCollator.h b/Source/JavaScriptCore/runtime/IntlCollator.h >index fcda7f291363346baedf5ebd4e32e198cfd0cb24..33a44bd9b571dc63aa748b4e5a114c6818abe6c7 100644 >--- a/Source/JavaScriptCore/runtime/IntlCollator.h >+++ b/Source/JavaScriptCore/runtime/IntlCollator.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlCollatorConstructor.cpp b/Source/JavaScriptCore/runtime/IntlCollatorConstructor.cpp >index 03b87b065974606f931b1aa430e36239ba0cb25d..78f189f98b49d9a2fe51ce27b2255951dd09460f 100644 >--- a/Source/JavaScriptCore/runtime/IntlCollatorConstructor.cpp >+++ b/Source/JavaScriptCore/runtime/IntlCollatorConstructor.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2015 Sukolsak Sakshuwong (sukolsak@gmail.com) > * Copyright (C) 2016 Apple Inc. All Rights Reserved. > * >diff --git a/Source/JavaScriptCore/runtime/IntlCollatorConstructor.h b/Source/JavaScriptCore/runtime/IntlCollatorConstructor.h >index e340919119d8299f1b36c0929607316db59e6044..c99cca7e3444489f60a7ae1654afd31e522442c4 100644 >--- a/Source/JavaScriptCore/runtime/IntlCollatorConstructor.h >+++ b/Source/JavaScriptCore/runtime/IntlCollatorConstructor.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2018 Apple Inc. All rights reserved. > * > * Redistribution and use in source and binary forms, with or without >diff --git a/Source/JavaScriptCore/runtime/IntlCollatorPrototype.cpp b/Source/JavaScriptCore/runtime/IntlCollatorPrototype.cpp >index 7d1fb7cf3c4482fab00b61f2f107c733d07abcda..ad59c8e4f20baa129c70a494185c6f4f55383e7b 100644 >--- a/Source/JavaScriptCore/runtime/IntlCollatorPrototype.cpp >+++ b/Source/JavaScriptCore/runtime/IntlCollatorPrototype.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2016-2017 Apple Inc. All rights reserved. > * > * Redistribution and use in source and binary forms, with or without >diff --git a/Source/JavaScriptCore/runtime/IntlCollatorPrototype.h b/Source/JavaScriptCore/runtime/IntlCollatorPrototype.h >index f3e974c04b89cdbbd4f421c585e293e7f3d02f66..253d00807a7f6d369a5d2dbd3de9c157abbee49b 100644 >--- a/Source/JavaScriptCore/runtime/IntlCollatorPrototype.h >+++ b/Source/JavaScriptCore/runtime/IntlCollatorPrototype.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlDateTimeFormat.cpp b/Source/JavaScriptCore/runtime/IntlDateTimeFormat.cpp >index c920acf47e82c952e8fb6e307d9b0fe3f5a82bdf..381ebabdeb3c04fd891ab18e1cd2937ae736eaa2 100644 >--- a/Source/JavaScriptCore/runtime/IntlDateTimeFormat.cpp >+++ b/Source/JavaScriptCore/runtime/IntlDateTimeFormat.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2016-2017 Apple Inc. All rights reserved. > * > * Redistribution and use in source and binary forms, with or without >diff --git a/Source/JavaScriptCore/runtime/IntlDateTimeFormat.h b/Source/JavaScriptCore/runtime/IntlDateTimeFormat.h >index 4a6c96e08846c540de7bb3ef7e94a280d080d785..d81e87513f172264421e6fdf1085c441202a3090 100644 >--- a/Source/JavaScriptCore/runtime/IntlDateTimeFormat.h >+++ b/Source/JavaScriptCore/runtime/IntlDateTimeFormat.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlDateTimeFormatConstructor.cpp b/Source/JavaScriptCore/runtime/IntlDateTimeFormatConstructor.cpp >index 5af82aba3127e5db5edba9896b736112e56aef7b..2919ece15c511e09781b1d1062f0385bd6e1f818 100644 >--- a/Source/JavaScriptCore/runtime/IntlDateTimeFormatConstructor.cpp >+++ b/Source/JavaScriptCore/runtime/IntlDateTimeFormatConstructor.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2016 Apple Inc. All Rights Reserved. > * > * Redistribution and use in source and binary forms, with or without >diff --git a/Source/JavaScriptCore/runtime/IntlDateTimeFormatConstructor.h b/Source/JavaScriptCore/runtime/IntlDateTimeFormatConstructor.h >index 302a499a9dde83209d035cb9a989f0f70005e185..ff9bbba7e8bd57088871de3d8e1299c5a5e7686f 100644 >--- a/Source/JavaScriptCore/runtime/IntlDateTimeFormatConstructor.h >+++ b/Source/JavaScriptCore/runtime/IntlDateTimeFormatConstructor.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2018 Apple Inc. All rights reserved. > * > * Redistribution and use in source and binary forms, with or without >diff --git a/Source/JavaScriptCore/runtime/IntlDateTimeFormatPrototype.cpp b/Source/JavaScriptCore/runtime/IntlDateTimeFormatPrototype.cpp >index e4ee619611971a2c1e146d017fb71cb6f640bbcd..4724b2be192b02852f883483e2d349be96752101 100644 >--- a/Source/JavaScriptCore/runtime/IntlDateTimeFormatPrototype.cpp >+++ b/Source/JavaScriptCore/runtime/IntlDateTimeFormatPrototype.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2016 Apple Inc. All rights reserved. > * > * Redistribution and use in source and binary forms, with or without >diff --git a/Source/JavaScriptCore/runtime/IntlDateTimeFormatPrototype.h b/Source/JavaScriptCore/runtime/IntlDateTimeFormatPrototype.h >index cc0e16bcb8cc8773f10a33d7a6bc6faf4c06108a..3dfeaa739e6f0d7bf72ade534f3a7d12a1ebafe4 100644 >--- a/Source/JavaScriptCore/runtime/IntlDateTimeFormatPrototype.h >+++ b/Source/JavaScriptCore/runtime/IntlDateTimeFormatPrototype.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlNumberFormat.cpp b/Source/JavaScriptCore/runtime/IntlNumberFormat.cpp >index 3456c0bdda8b6fa2f57b751630e901c755fdb33b..185ac368d17330fffa587c6612dfbdd219ffcba0 100644 >--- a/Source/JavaScriptCore/runtime/IntlNumberFormat.cpp >+++ b/Source/JavaScriptCore/runtime/IntlNumberFormat.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2016 Sukolsak Sakshuwong (sukolsak@gmail.com) > * Copyright (C) 2016-2017 Apple Inc. All rights reserved. > * >diff --git a/Source/JavaScriptCore/runtime/IntlNumberFormat.h b/Source/JavaScriptCore/runtime/IntlNumberFormat.h >index dc650a09d7e9af8897b89028b8647a10d64c7775..a0e96b08ab9cc41d09fb56fc5a0d7cc16c7be0ff 100644 >--- a/Source/JavaScriptCore/runtime/IntlNumberFormat.h >+++ b/Source/JavaScriptCore/runtime/IntlNumberFormat.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlNumberFormatConstructor.cpp b/Source/JavaScriptCore/runtime/IntlNumberFormatConstructor.cpp >index 297210c6de8c185ffebc5f68ae9388dcbd0d5956..2b30503be36493dda8e7a70a12418dee4ad78d8b 100644 >--- a/Source/JavaScriptCore/runtime/IntlNumberFormatConstructor.cpp >+++ b/Source/JavaScriptCore/runtime/IntlNumberFormatConstructor.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2016 Apple Inc. All Rights Reserved. > * > * Redistribution and use in source and binary forms, with or without >diff --git a/Source/JavaScriptCore/runtime/IntlNumberFormatConstructor.h b/Source/JavaScriptCore/runtime/IntlNumberFormatConstructor.h >index 498a06dd5fe2e1758f1991c997bb83356586df33..5dc516e83dcbf56a7c527e0717eaea083ef40a26 100644 >--- a/Source/JavaScriptCore/runtime/IntlNumberFormatConstructor.h >+++ b/Source/JavaScriptCore/runtime/IntlNumberFormatConstructor.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2018 Apple Inc. All rights reserved. > * > * Redistribution and use in source and binary forms, with or without >diff --git a/Source/JavaScriptCore/runtime/IntlNumberFormatPrototype.cpp b/Source/JavaScriptCore/runtime/IntlNumberFormatPrototype.cpp >index b3ac0cb1a6cadc225aa41f09224cd664e6d67688..5cf177d647f850141d7c1b9373292a09089633b5 100644 >--- a/Source/JavaScriptCore/runtime/IntlNumberFormatPrototype.cpp >+++ b/Source/JavaScriptCore/runtime/IntlNumberFormatPrototype.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2016 Apple Inc. All rights reserved. > * > * Redistribution and use in source and binary forms, with or without >diff --git a/Source/JavaScriptCore/runtime/IntlNumberFormatPrototype.h b/Source/JavaScriptCore/runtime/IntlNumberFormatPrototype.h >index 4e25ed49dbb2a2f03f2659c282ad17d02f43680e..aa1e5e6e0d0bdaa0a94bbd902461b90aa71076da 100644 >--- a/Source/JavaScriptCore/runtime/IntlNumberFormatPrototype.h >+++ b/Source/JavaScriptCore/runtime/IntlNumberFormatPrototype.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlObject.cpp b/Source/JavaScriptCore/runtime/IntlObject.cpp >index 4a7f6de712a74966ac7258b8074223989d9376f5..86f938a2be4e3fde121dc985423d1331103988b8 100644 >--- a/Source/JavaScriptCore/runtime/IntlObject.cpp >+++ b/Source/JavaScriptCore/runtime/IntlObject.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * Copyright (C) 2015 Sukolsak Sakshuwong (sukolsak@gmail.com) > * Copyright (C) 2016 Apple Inc. All rights reserved. > * >diff --git a/Source/JavaScriptCore/runtime/IntlObject.h b/Source/JavaScriptCore/runtime/IntlObject.h >index e9fb8887df0dc5e2bb7617380de58010adbab332..f2445f676b526e518dfdefb874eb53c83febaaf8 100644 >--- a/Source/JavaScriptCore/runtime/IntlObject.h >+++ b/Source/JavaScriptCore/runtime/IntlObject.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2015 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlPluralRules.cpp b/Source/JavaScriptCore/runtime/IntlPluralRules.cpp >index eaa93f33420e0a299080686abf47874383916b27..7b838f6812e00d89a7edd4379072fc68edf9fc68 100644 >--- a/Source/JavaScriptCore/runtime/IntlPluralRules.cpp >+++ b/Source/JavaScriptCore/runtime/IntlPluralRules.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2018 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2018 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlPluralRules.h b/Source/JavaScriptCore/runtime/IntlPluralRules.h >index 11c783aa5bedda61f96a3b0855fc1f162ad8841c..5379e48bba811ab4b6620ad765914f3eb2f05a49 100644 >--- a/Source/JavaScriptCore/runtime/IntlPluralRules.h >+++ b/Source/JavaScriptCore/runtime/IntlPluralRules.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2018 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2018 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlPluralRulesConstructor.cpp b/Source/JavaScriptCore/runtime/IntlPluralRulesConstructor.cpp >index 9829df941985f6b8ebb46c68cd3d32f4b6e4f309..4a9e76971e03f81fac8ccd6c0f66db5190ffc12d 100644 >--- a/Source/JavaScriptCore/runtime/IntlPluralRulesConstructor.cpp >+++ b/Source/JavaScriptCore/runtime/IntlPluralRulesConstructor.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2018 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2018 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlPluralRulesConstructor.h b/Source/JavaScriptCore/runtime/IntlPluralRulesConstructor.h >index dcb5968d51165eab95fe1d1e971e719c6596a15f..91af0ed4ef49d42ecd06a337064966041cb2d6e0 100644 >--- a/Source/JavaScriptCore/runtime/IntlPluralRulesConstructor.h >+++ b/Source/JavaScriptCore/runtime/IntlPluralRulesConstructor.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2018 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2018 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlPluralRulesPrototype.cpp b/Source/JavaScriptCore/runtime/IntlPluralRulesPrototype.cpp >index bad1e14bd3073b8319bfd9ce16e04777d706c932..d6912b9eb95a3118e8cf50cdd1a393c478e07a58 100644 >--- a/Source/JavaScriptCore/runtime/IntlPluralRulesPrototype.cpp >+++ b/Source/JavaScriptCore/runtime/IntlPluralRulesPrototype.cpp >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2018 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2018 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions >diff --git a/Source/JavaScriptCore/runtime/IntlPluralRulesPrototype.h b/Source/JavaScriptCore/runtime/IntlPluralRulesPrototype.h >index f3cba8121a02c41f7e0d323a8a73393332334b96..ca0014ca17c4bd1bc7680a4b4dc1d7e0b25e5cec 100644 >--- a/Source/JavaScriptCore/runtime/IntlPluralRulesPrototype.h >+++ b/Source/JavaScriptCore/runtime/IntlPluralRulesPrototype.h >@@ -1,5 +1,5 @@ > /* >- * Copyright (C) 2018 Andy VanWagoner (thetalecrafter@gmail.com) >+ * Copyright (C) 2018 Andy VanWagoner (andy@vanwagoner.family) > * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 185396
: 339758