1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-12-22 08:48:54 +00:00

[FIX] The Properties is always null

This commit is contained in:
Maxime Sinclair 2014-01-09 16:53:35 +01:00
parent 567a92f158
commit 20de5a0d5d

View File

@ -37,7 +37,7 @@ public class Configuration {
* Singleton constructor
*/
private Configuration() {
Properties config = new Properties();
config = new Properties();
// Default values
config.setProperty("SHOW_SOCIAL_BUTTONS", "off");
@ -45,8 +45,7 @@ public class Configuration {
// End of default values
try {
InputStream is = Thread.currentThread().getContextClassLoader().
getResourceAsStream("config.properties");
InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream("config.properties");
if (is != null) {
config.load(is);
is.close();