X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=getdown%2Fsrc%2Fgetdown%2Fcore%2Fsrc%2Fmain%2Fjava%2Fcom%2Fthreerings%2Fgetdown%2Fdata%2FApplication.java;h=684844aabeb95793c259ec66b189459d8115d2ce;hb=9b8e039f02800dba0f3a3de2bc57e7a8b4f95f1c;hp=468796c00298411c3075d8ffed861859915bfe49;hpb=7ddd007f23e34c640b720cad6112d1925e67dec8;p=jalview.git diff --git a/getdown/src/getdown/core/src/main/java/com/threerings/getdown/data/Application.java b/getdown/src/getdown/core/src/main/java/com/threerings/getdown/data/Application.java index 468796c..684844a 100644 --- a/getdown/src/getdown/core/src/main/java/com/threerings/getdown/data/Application.java +++ b/getdown/src/getdown/core/src/main/java/com/threerings/getdown/data/Application.java @@ -31,8 +31,7 @@ import java.util.zip.GZIPInputStream; import jalview.bin.HiDPISetting; import jalview.bin.MemorySetting; -import jalview.bin.LaunchUtils; -import jalview.util.ChannelProperties; +import jalview.util.LaunchUtils; import com.threerings.getdown.util.*; // avoid ambiguity with java.util.Base64 which we can't use as it's 1.8+ @@ -1184,17 +1183,8 @@ public class Application } // use saved preferences if no cmdline args - File channelProps = getLocalPath(ChannelProperties.CHANNEL_PROPERTIES_FILENAME); - if (channelProps.exists()) { - try { - InputStream is = new FileInputStream(channelProps); - ChannelProperties.loadProps(is); - } catch (IOException e) { - log.error(e.getMessage()); - } - } - boolean useCustomisedSettings = Boolean.parseBoolean(LaunchUtils.getUserPreference(MemorySetting.CUSTOMISED_SETTINGS)); - if (useCustomisedSettings) { + LaunchUtils.loadChannelProps(getAppDir()); + if (LaunchUtils.getBooleanUserPreference(MemorySetting.CUSTOMISED_SETTINGS)) { if (jvmmempc == null) { jvmmempc = LaunchUtils.getUserPreference(MemorySetting.MEMORY_JVMMEMPC); }