Author: toad
Date: 2007-11-19 22:55:22 +0000 (Mon, 19 Nov 2007)
New Revision: 15862
Modified:
trunk/freenet/src/freenet/clients/http/BookmarkEditorToadlet.java
Log:
indent
Modified: trunk/freenet/src/freenet/clients/http/BookmarkEditorToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/BookmarkEditorToadlet.java
2007-11-19 22:51:33 UTC (rev 15861)
+++ trunk/freenet/src/freenet/clients/http/BookmarkEditorToadlet.java
2007-11-19 22:55:22 UTC (rev 15862)
@@ -217,12 +217,12 @@
String key =
(action.equals("edit") ? item.getKey() : "");
form.addChild("label", "for",
"key", (L10n.getString("BookmarkEditorToadlet.keyLabel") + ' '));
form.addChild("input", new
String[]{"type", "id", "name", "size", "value"}, new String []{"text", "key",
"key", "50", key});
- form.addChild("br");
- form.addChild("label", "for",
"hasAnActivelink",
(L10n.getString("BookmarkEditorToadlet.hasAnActivelinkLabel") + ' '));
- if(item.hasAnActivelink())
- form.addChild("input", new
String[]{"type", "id", "name", "checked" }, new String[]{"checkbox",
"hasAnActivelink", "hasAnActivelink", String.valueOf(item.hasAnActivelink()) });
- else
- form.addChild("input", new
String[]{"type", "id", "name"}, new String[]{"checkbox", "hasAnActivelink",
"hasAnActivelink" });
+ form.addChild("br");
+ form.addChild("label", "for",
"hasAnActivelink",
(L10n.getString("BookmarkEditorToadlet.hasAnActivelinkLabel") + ' '));
+ if(item.hasAnActivelink())
+ form.addChild("input",
new String[]{"type", "id", "name", "checked" }, new String[]{"checkbox",
"hasAnActivelink", "hasAnActivelink", String.valueOf(item.hasAnActivelink()) });
+ else
+ form.addChild("input",
new String[]{"type", "id", "name"}, new String[]{"checkbox", "hasAnActivelink",
"hasAnActivelink" });
}
form.addChild("input", new String[]
{"type", "name", "value"}, new String[] {"hidden", "bookmark",bookmarkPath});