move LocalStorage from core to plat
[org.ibex.js.git] / src / org / ibex / js / Fountain.java
index e78b58b..027b860 100644 (file)
@@ -158,7 +158,7 @@ public abstract class Fountain extends JS.Obj implements JS.Cloneable {
             if (!disk) {
                 cis = new CachedInputStream(parent.getInputStream());
             } else {
-                java.io.File f = org.ibex.core.LocalStorage.Cache.getCacheFileForKey(key);
+                java.io.File f = org.ibex.plat.Platform.LocalStorage.Cache.getCacheFileForKey(key);
                 if (f.exists()) return new FileInputStream(f);
                 cis = new CachedInputStream(parent.getInputStream(), f);
             }