Update of /var/cvs/src/org/mmbase/util
In directory james.mmbase.org:/tmp/cvs-serv28694

Modified Files:
        ResourceLoader.java 
Log Message:
that obviously was a bug


See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/util


Index: ResourceLoader.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/util/ResourceLoader.java,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -b -r1.67 -r1.68
--- ResourceLoader.java 7 Aug 2008 18:49:29 -0000       1.67
+++ ResourceLoader.java 13 Aug 2008 08:09:16 -0000      1.68
@@ -97,7 +97,7 @@
  * <p>For property-files, the java-unicode-escaping is undone on loading, and 
applied on saving, so there is no need to think of that.</p>
  * @author Michiel Meeuwissen
  * @since  MMBase-1.8
- * @version $Id: ResourceLoader.java,v 1.67 2008/08/07 18:49:29 michiel Exp $
+ * @version $Id: ResourceLoader.java,v 1.68 2008/08/13 08:09:16 michiel Exp $
  */
 public class ResourceLoader extends ClassLoader {
 
@@ -169,18 +169,9 @@
      */
 
     public enum Type {
-        CONFIG {
-            public ResourceLoader get() { return 
ResourceLoader.getConfigurationRoot(); }
-
-        },
-        WEB {
-            public ResourceLoader get() { return ResourceLoader.getWebRoot(); }
-
-        },
-        SYSTEM {
-            public ResourceLoader get() { return ResourceLoader.getWebRoot(); }
-
-        };
+        CONFIG { public ResourceLoader get() { return 
ResourceLoader.getConfigurationRoot(); } },
+        WEB {    public ResourceLoader get() { return 
ResourceLoader.getWebRoot(); } },
+        SYSTEM { public ResourceLoader get() { return 
ResourceLoader.getSystemRoot(); } };
         public abstract ResourceLoader get();
     }
 
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to