renamged getFile to getDataFle (settings class)

Former-commit-id: 9a4fceaf67e3d453b13794de2a14182b877ff42a
This commit is contained in:
Jeremy Long
2013-11-28 06:22:50 -05:00
parent f34a3e421d
commit a71c8cef83

View File

@@ -49,7 +49,7 @@ public abstract class BaseDBTestCase extends TestCase {
public static void ensureDBExists() throws Exception {
java.io.File dataPath = Settings.getFile(Settings.KEYS.DATA_DIRECTORY);
java.io.File dataPath = Settings.getDataFile(Settings.KEYS.DATA_DIRECTORY);
if (!dataPath.exists() || (dataPath.isDirectory() && dataPath.listFiles().length < 3)) {
dataPath.mkdirs();
FileInputStream fis = null;