Skip to content

Commit a209fe9

Browse files
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. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@221884 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 830bc70 commit a209fe9

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Source/WebInspectorUI/ChangeLog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2017-09-11 Joseph Pecoraro <[email protected]>
2+
3+
Web Inspector: Remove unused parameter to UIString
4+
https://bugs.webkit.org/show_bug.cgi?id=176738
5+
6+
Reviewed by Matt Baker.
7+
8+
* UserInterface/Base/LoadLocalizedStrings.js:
9+
(WI.UIString):
10+
Remove unused parameter. We moved to String.format for this behavior a while ago.
11+
112
2017-09-11 Joseph Pecoraro <[email protected]>
213

314
Web Inspector: Do not allow the split console in the Settings tab

Source/WebInspectorUI/UserInterface/Base/LoadLocalizedStrings.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ WI.unlocalizedString = function(string)
4141
return string;
4242
};
4343

44-
WI.UIString = function(string, vararg)
44+
WI.UIString = function(string)
4545
{
4646
if (WI.dontLocalizeUserInterface)
4747
return string;

0 commit comments

Comments
 (0)