I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 296ddbe9 authored by str4d's avatar str4d
Browse files

Removed some unnecessary <hr>s

parent e20f2d0b
No related branches found
No related tags found
No related merge requests found
......@@ -651,7 +651,7 @@ public class SummaryHelper extends HelperBase {
// display all the time so we display the final failure message, and plugin update messages too
String status = UpdateHandler.getStatus();
if (status.length() > 0) {
buf.append("<h4>").append(status).append("</h4><hr>\n");
buf.append("<h4>").append(status).append("</h4>\n");
}
if (updateAvailable() || unsignedUpdateAvailable()) {
if ("true".equals(System.getProperty(UpdateHandler.PROP_UPDATE_IN_PROGRESS))) {
......@@ -684,7 +684,7 @@ public class SummaryHelper extends HelperBase {
.append(_("Download Unsigned<br>Update {0}", getUnsignedUpdateVersion()))
.append("</button><br>\n");
}
buf.append("</form><hr>\n");
buf.append("</form>\n");
}
}
return buf.toString();
......@@ -739,7 +739,6 @@ public class SummaryHelper extends HelperBase {
}
if (buf.length() <= 0)
return "";
buf.append("<hr>");
return buf.toString();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment