1.1 restoration
[mir.git] / source / mircoders / global / MRUCache.java
index bdd6921..f3722eb 100755 (executable)
@@ -48,12 +48,7 @@ public class MRUCache {
 
   public MRUCache() {
     logger = new LoggerWrapper("Global.MRUCache");
-    try {
-      configuration = MirPropertiesConfiguration.instance();
-    }
-    catch (PropertiesConfigExc e) {
-      throw new RuntimeException("Can't get configuration: " + e.getMessage());
-    }
+    configuration = MirPropertiesConfiguration.instance();
     cacheMaxItems=Integer.parseInt(configuration.getString("Global.Cache.Items"));
     cache = new HashMap();
     mruList= new LinkedList();