This commit is contained in:
zzz
2020-10-17 14:41:13 +00:00
parent 4d82917b94
commit d387448794
8 changed files with 9 additions and 9 deletions

View File

@ -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) {

View File

@ -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)

View File

@ -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 &amp; FAQ"));
aMap.put("I2PServices", _x("I2P Services"));
aMap.put("I2PInternals", _x("I2P Internals"));