From d20afd6ec5db8fa308edaace12705df4f3f8f425 Mon Sep 17 00:00:00 2001 From: lukasz Date: Thu, 3 Oct 2019 20:14:43 +0200 Subject: [PATCH] Remove not used private methods from BisqEnvironment --- core/src/main/java/bisq/core/app/BisqEnvironment.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/core/src/main/java/bisq/core/app/BisqEnvironment.java b/core/src/main/java/bisq/core/app/BisqEnvironment.java index fdc211ad583..2c542bc64c3 100644 --- a/core/src/main/java/bisq/core/app/BisqEnvironment.java +++ b/core/src/main/java/bisq/core/app/BisqEnvironment.java @@ -94,8 +94,6 @@ public static void setDefaultAppName(String defaultAppName) { public static final String BISQ_COMMANDLINE_PROPERTY_SOURCE_NAME = "bisqCommandLineProperties"; public static final String BISQ_APP_DIR_PROPERTY_SOURCE_NAME = "bisqAppDirProperties"; public static final String BISQ_DEFAULT_PROPERTY_SOURCE_NAME = "bisqDefaultProperties"; - private static final String BISQ_HOME_DIR_PROPERTY_SOURCE_NAME = "bisqHomeDirProperties"; - private static final String BISQ_CLASSPATH_PROPERTY_SOURCE_NAME = "bisqClasspathProperties"; private static String staticAppDataDir; @@ -460,14 +458,6 @@ PropertySource getAppDirProperties() throws Exception { return new ResourcePropertySource(BISQ_APP_DIR_PROPERTY_SOURCE_NAME, resource); } - private PropertySource homeDirProperties() { - return new PropertySource.StubPropertySource(BISQ_HOME_DIR_PROPERTY_SOURCE_NAME); - } - - private PropertySource classpathProperties() { - return new PropertySource.StubPropertySource(BISQ_CLASSPATH_PROPERTY_SOURCE_NAME); - } - private PropertySource defaultProperties() { return new PropertiesPropertySource(BISQ_DEFAULT_PROPERTY_SOURCE_NAME, new Properties() { {