X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fjs%2FFountain.java;h=027b86065bd00b5827486f7d30b3900a36de2dd6;hb=a6fb49b55117ea4cf330b412d2a2fff403fcd053;hp=e78b58b4678021a1617c0122d7313881e8067e2b;hpb=ffb9735ec64193f5a6ef0368bd244f9fac0e1c09;p=org.ibex.js.git 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); }