Skip to content

Commit

Permalink
Merge pull request #3363 from lusarz/refactor-bisq-environment-2
Browse files Browse the repository at this point in the history
Remove not used private methods from BisqEnvironment
  • Loading branch information
ripcurlx authored Oct 14, 2019
2 parents aaddda9 + d20afd6 commit 57fc862
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions core/src/main/java/bisq/core/app/BisqEnvironment.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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() {
{
Expand Down

0 comments on commit 57fc862

Please sign in to comment.