From fd8c8b567be7af0c840310f23368f23cd4f046ba Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 2 Feb 2015 13:14:07 +0100 Subject: [PATCH] the DEFAULT only tries to save in current dir. Cleaned up code for that --- .../src/dorkbox/util/properties/PropertiesProvider.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dorkbox-Util/src/dorkbox/util/properties/PropertiesProvider.java b/Dorkbox-Util/src/dorkbox/util/properties/PropertiesProvider.java index dd4914b..8acf140 100644 --- a/Dorkbox-Util/src/dorkbox/util/properties/PropertiesProvider.java +++ b/Dorkbox-Util/src/dorkbox/util/properties/PropertiesProvider.java @@ -27,10 +27,6 @@ import dorkbox.util.FileUtil; public class PropertiesProvider { - // the basePath for properties based settings. In JAVA proper, this is by default relative to the jar location. - // in ANDROID dalvik, this must be specified to be the location of the APK plus some extra info. This must be set by the android app. - public static String basePath = ""; - private String comments = "Settings and configuration file. Strings must be escape formatted!"; private final Properties properties = new SortedProperties(); private final File propertiesFile;