Skip to content

Commit

Permalink
Removing unneeded static method from DefaultPropertiesLoader
Browse files Browse the repository at this point in the history
  • Loading branch information
ajs6f committed Nov 6, 2013
1 parent 92461f3 commit cb1f412
Showing 1 changed file with 1 addition and 4 deletions.
Expand Up @@ -17,6 +17,7 @@

import org.slf4j.Logger;

import static java.lang.System.getProperty;
import static org.slf4j.LoggerFactory.getLogger;

/**
Expand Down Expand Up @@ -87,10 +88,6 @@ public void loadSystemProperties() {
}
}

private static String getProperty(final String property) {
return System.getProperty(property);
}

private void setProperty(final String prop) {
System.setProperty(prop, BASEDIR + prop);
}
Expand Down

0 comments on commit cb1f412

Please sign in to comment.