X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fjs%2FPropertyFile.java;h=beede7f4e0c6839ce48c5361a5cf49c3d5a74420;hb=73131826a18c93af4fb04672bc3ec820e1197ad1;hp=32279226d58d0feba93cffef4c328ad839e38c01;hpb=b1fa73c17b31f268fca5695d0876d7314fbacce3;p=org.ibex.js.git diff --git a/src/org/ibex/js/PropertyFile.java b/src/org/ibex/js/PropertyFile.java index 3227922..beede7f 100644 --- a/src/org/ibex/js/PropertyFile.java +++ b/src/org/ibex/js/PropertyFile.java @@ -1,14 +1,19 @@ -// Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL] +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + package org.ibex.js; import org.ibex.util.*; import java.util.*; import java.io.*; +// FEATURE: Update for new api + /** A JS interface to a Java '.properties' file; very crude */ public class PropertyFile extends JS { - private final Properties p = new Properties(); + /*private final Properties p = new Properties(); private final Hash cache = new Hash(10, 3); private File f; @@ -47,5 +52,5 @@ public class PropertyFile extends JS { Object ret = p.get(toString(key)); if (ret != null) return ret; return new Minion(escape(toString(key))); - } + }*/ }