From: adam Date: Mon, 17 Jan 2005 01:08:13 +0000 (+0000) Subject: move LocalStorage from core to plat X-Git-Url: http://git.megacz.com/?p=org.ibex.js.git;a=commitdiff_plain;h=c3a9078965e81dc5961040e1d726906db74e6264 move LocalStorage from core to plat darcs-hash:20050117010813-5007d-044f34dc1d154fc7ce8424d24c1db866f2d2c0fa.gz --- diff --git a/src/org/ibex/js/Fountain.java b/src/org/ibex/js/Fountain.java index e78b58b..027b860 100644 --- a/src/org/ibex/js/Fountain.java +++ b/src/org/ibex/js/Fountain.java @@ -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); }