Author: nextgens
Date: 2006-06-13 12:29:08 +0000 (Tue, 13 Jun 2006)
New Revision: 9180
Modified:
trunk/freenet/src/freenet/clients/http/PageMaker.java
Log:
for now we only want to enforce that the 'clean' CSS theme is aviable
Modified: trunk/freenet/src/freenet/clients/http/PageMaker.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/PageMaker.java 2006-06-13
05:41:35 UTC (rev 9179)
+++ trunk/freenet/src/freenet/clients/http/PageMaker.java 2006-06-13
12:29:08 UTC (rev 9180)
@@ -143,15 +143,9 @@
} catch (NullPointerException npe) {
Logger.error(this, "error creating list of themes",
npe);
} finally {
- if (!themes.contains("aqua")) {
- themes.add("aqua");
- }
if (!themes.contains("clean")) {
themes.add("clean");
}
- if (!themes.contains("greyandblue")) {
- themes.add("grayandblue");
- }
}
return themes;
}