forked from I2P_Developers/i2p.i2p
;; -> ;
This commit is contained in:
@ -175,7 +175,7 @@ public class BlocklistEntries {
|
||||
StringBuilder buf = new StringBuilder();
|
||||
long now = System.currentTimeMillis();
|
||||
String date = RFC3339Date.to3339Date(now);
|
||||
buf.append(date).append('\n');;
|
||||
buf.append(date).append('\n');
|
||||
BufferedReader br = null;
|
||||
try {
|
||||
br = new BufferedReader(new InputStreamReader(new FileInputStream(inputFile), "UTF-8"));
|
||||
@ -196,7 +196,7 @@ public class BlocklistEntries {
|
||||
rlist.add(s.substring(1));
|
||||
} else {
|
||||
elist.add(s);
|
||||
buf.append(s).append('\n');;
|
||||
buf.append(s).append('\n');
|
||||
}
|
||||
}
|
||||
} catch (IOException ioe) {
|
||||
|
@ -169,7 +169,7 @@ public class EventLogHelper extends FormHandler {
|
||||
if (events.isEmpty()) {
|
||||
if (isAll) {
|
||||
if (_age == 0)
|
||||
return ("<table id=\"eventlog\"><tr><td class=\"infohelp\">") + _t("No events found") + ("</td></tr></table>");;
|
||||
return ("<table id=\"eventlog\"><tr><td class=\"infohelp\">") + _t("No events found") + ("</td></tr></table>");
|
||||
return ("<table id=\"eventlog\"><tr><td>") + _t("No events found in previous {0}", DataHelper.formatDuration2(_age)) + ("</td></tr></table>");
|
||||
}
|
||||
if (_age == 0)
|
||||
|
@ -39,7 +39,7 @@ class SummaryBarRenderer {
|
||||
static final Map<String, String> SECTION_NAMES;
|
||||
|
||||
static {
|
||||
Map<String, String> aMap = new HashMap<String, String>();;
|
||||
Map<String, String> aMap = new HashMap<String, String>();
|
||||
aMap.put("HelpAndFAQ", _x("Help & FAQ"));
|
||||
aMap.put("I2PServices", _x("I2P Services"));
|
||||
aMap.put("I2PInternals", _x("I2P Internals"));
|
||||
|
Reference in New Issue
Block a user