X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FLocalStorage.java;h=2f94fe8930759fcfdf89727472b99b72b6aca562;hb=8b9946f7b7cac616e447d4022d3fad8801bcd011;hp=50451dd0f1cb630731febcdc0d7413f4d3786438;hpb=ef61babe77a94eba181c95a52c0069a612276dff;p=org.ibex.core.git diff --git a/src/org/xwt/LocalStorage.java b/src/org/xwt/LocalStorage.java index 50451dd..2f94fe8 100644 --- a/src/org/xwt/LocalStorage.java +++ b/src/org/xwt/LocalStorage.java @@ -1,4 +1,4 @@ -// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL] +// Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL] package org.xwt; import java.io.*; @@ -13,18 +13,18 @@ public class LocalStorage { static String xwtDirName = System.getProperty("user.home") + java.io.File.separatorChar + ".xwt"; - static File xwtDir = null; - static File cacheDir = null; + static java.io.File xwtDir = null; + static java.io.File cacheDir = null; static { try { - xwtDir = new File(xwtDirName); + xwtDir = new java.io.File(xwtDirName); if (!xwtDir.mkdirs()) xwtDir = null; } catch (Exception e) { Log.info(LocalStorage.class, "unable to create xwt directory " + xwtDirName); } try { - cacheDir = new File(xwtDirName + java.io.File.separatorChar + "cache"); + cacheDir = new java.io.File(xwtDirName + java.io.File.separatorChar + "cache"); if (!cacheDir.mkdirs()) cacheDir = null; } catch (Exception e) { Log.info(LocalStorage.class, "unable to create cache directory " + xwtDirName + java.io.File.separatorChar + "cache"); @@ -35,11 +35,11 @@ public class LocalStorage { // FEATURE: we ought to be able to do stuff like sha1-checking and date checking on cached resources public static class Cache { - private static void delTree(File f) throws IOException { + private static void delTree(java.io.File f) throws IOException { if (f.isDirectory()) { String[] s = f.list(); for(int i=0; i