Title: [221884] trunk/Source/WebInspectorUI
Revision
221884
Author
[email protected]
Date
2017-09-11 15:22:11 -0700 (Mon, 11 Sep 2017)

Log Message

Web Inspector: Remove unused parameter to UIString
https://bugs.webkit.org/show_bug.cgi?id=176738

Patch by Joseph Pecoraro <[email protected]> on 2017-09-11
Reviewed by Matt Baker.

* UserInterface/Base/LoadLocalizedStrings.js:
(WI.UIString):
Remove unused parameter. We moved to String.format for this behavior a while ago.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (221883 => 221884)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-09-11 22:21:10 UTC (rev 221883)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-09-11 22:22:11 UTC (rev 221884)
@@ -1,5 +1,16 @@
 2017-09-11  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: Remove unused parameter to UIString
+        https://bugs.webkit.org/show_bug.cgi?id=176738
+
+        Reviewed by Matt Baker.
+
+        * UserInterface/Base/LoadLocalizedStrings.js:
+        (WI.UIString):
+        Remove unused parameter. We moved to String.format for this behavior a while ago.
+
+2017-09-11  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Do not allow the split console in the Settings tab
         https://bugs.webkit.org/show_bug.cgi?id=176726
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Base/LoadLocalizedStrings.js (221883 => 221884)


--- trunk/Source/WebInspectorUI/UserInterface/Base/LoadLocalizedStrings.js	2017-09-11 22:21:10 UTC (rev 221883)
+++ trunk/Source/WebInspectorUI/UserInterface/Base/LoadLocalizedStrings.js	2017-09-11 22:22:11 UTC (rev 221884)
@@ -41,7 +41,7 @@
     return string;
 };
 
-WI.UIString = function(string, vararg)
+WI.UIString = function(string)
 {
     if (WI.dontLocalizeUserInterface)
         return string;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to