|
@@ -7,7 +7,7 @@ public class Config {
|
|
|
private static Config _instance = null;
|
|
|
|
|
|
public static Config getInstance() {
|
|
|
- return (_instance == null ? new Config() : _instance);
|
|
|
+ return (_instance == null ? _instance = new Config() : _instance);
|
|
|
}
|
|
|
|
|
|
public static void setInstance(Config config) {
|