Skip to content
Snippets Groups Projects
Commit b512d38b authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

Fixed cached directories to not be hidden:

.cache -> cache
.lcsim -> lcsim
parent adf2f6f4
Branches
Tags
No related merge requests found
......@@ -34,7 +34,7 @@ import org.lcsim.util.cache.FileCache.Validator;
public abstract class ConditionsReader {
private static Properties aliases;
private static final File home = new File(FileCache.getCacheRoot(), ".lcsim");
private static final File home = new File(FileCache.getCacheRoot(), "lcsim");
private static FileCache cache;
/**
......
......@@ -15,7 +15,7 @@ import java.net.URLEncoder;
* @author tonyj
*/
public class FileCache {
private static final File home = new File(getCacheRoot(), ".cache");
private static final File home = new File(getCacheRoot(), "cache");
private static final ByteFormat format = new ByteFormat();
private File cache;
private PrintStream print = System.out;
......@@ -200,4 +200,4 @@ public class FileCache {
*/
void checkValidity(URL url, File file) throws IOException;
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment