Author: toad
Date: 2007-11-28 12:18:52 +0000 (Wed, 28 Nov 2007)
New Revision: 16006
Modified:
trunk/freenet/src/freenet/clients/http/bookmark/BookmarkManager.java
Log:
indent
Modified: trunk/freenet/src/freenet/clients/http/bookmark/BookmarkManager.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/bookmark/BookmarkManager.java
2007-11-28 12:18:36 UTC (rev 16005)
+++ trunk/freenet/src/freenet/clients/http/bookmark/BookmarkManager.java
2007-11-28 12:18:52 UTC (rev 16006)
@@ -79,18 +79,18 @@
//TODO: remove
String[] oldBookmarks = null;
if(oldConfig != null) {
- try {
- String o = oldConfig.get("fproxy.bookmarks");
- if (o == null) {
- oldBookmarks = null;
- } else {
- oldBookmarks = StringArrOption.stringToArray(o);
- }
- } catch (URLEncodedFormatException e) {
- Logger.error(this, "Not possible to migrate: caught " + e, e);
- oldBookmarks = null;
+ try {
+ String o = oldConfig.get("fproxy.bookmarks");
+ if (o == null) {
+ oldBookmarks = null;
+ } else {
+ oldBookmarks = StringArrOption.stringToArray(o);
+ }
+ } catch (URLEncodedFormatException e) {
+ Logger.error(this, "Not possible to migrate: caught " +
e, e);
+ oldBookmarks = null;
+ }
}
- }
if (oldBookmarks != null) {
migrateOldBookmarks(oldBookmarks);
storeBookmarks();