From c3a9078965e81dc5961040e1d726906db74e6264 Mon Sep 17 00:00:00 2001 From: adam Date: Mon, 17 Jan 2005 01:08:13 +0000 Subject: [PATCH] move LocalStorage from core to plat darcs-hash:20050117010813-5007d-044f34dc1d154fc7ce8424d24c1db866f2d2c0fa.gz --- src/org/ibex/js/Fountain.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 1.7.10.4