comparison src/luan/impl/Compiled.java @ 1562:b89212fd04b5

remove table.luan
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 08 Nov 2020 16:50:59 -0700
parents e1a13e707bf3
children 8fbcc4747091
comparison
equal deleted inserted replaced
1561:e1a13e707bf3 1562:b89212fd04b5
131 throw new RuntimeException(e); 131 throw new RuntimeException(e);
132 } 132 }
133 } 133 }
134 134
135 135
136 private static final int VERSION = 4; 136 private static final int VERSION = 5;
137 private static final File tmpDir; 137 private static final File tmpDir;
138 static { 138 static {
139 File f = new File(System.getProperty("java.io.tmpdir")); 139 File f = new File(System.getProperty("java.io.tmpdir"));
140 tmpDir = new File(f,"luan"); 140 tmpDir = new File(f,"luan");
141 tmpDir.mkdir(); 141 tmpDir.mkdir();