forked from I2P_Developers/i2p.i2p
Rename _() for translation to _t() for Java 9 compatibility (ticket #1456)
This commit is contained in:
@@ -62,7 +62,7 @@ public class ConfigNavHelper extends HelperBase {
|
||||
buf.append("<center>");
|
||||
List<Tab> tabs = new ArrayList<Tab>(pages.length);
|
||||
for (int i = 0; i < pages.length; i++) {
|
||||
tabs.add(new Tab(pages[i], _(titles[i])));
|
||||
tabs.add(new Tab(pages[i], _t(titles[i])));
|
||||
}
|
||||
Collections.sort(tabs, new TabComparator());
|
||||
for (int i = 0; i < tabs.size(); i++) {
|
||||
|
||||
Reference in New Issue
Block a user