Changes to MGC class library and fix a bug regarding nested inline class declaration
[IRC.git] / Robust / src / ClassLibrary / MGC / System.java
index bedb31700ce375c9675f30a4198d8d616b849db9..9b16885e53b461f59c8a31dac1dff63bbf9add11 100644 (file)
@@ -112,6 +112,10 @@ public class System {
     return props;
   }
   
+  public static void setProperties(Properties p) {
+      props = p;
+  }
+  
   public static String getProperty(String key) {
     if(props != null) {
       return (String)props.getProperty(key);