Removing synchronized as the load properties method no longer set the static istance
This commit is contained in:
parent
4dd6708852
commit
076c2b1b4e
|
@ -872,7 +872,7 @@ public class Config {
|
||||||
* @return The {@link Properties} object. the returned instance might be empty of file does not
|
* @return The {@link Properties} object. the returned instance might be empty of file does not
|
||||||
* exist or if it is in a wrong format.
|
* exist or if it is in a wrong format.
|
||||||
*/
|
*/
|
||||||
private static synchronized Properties loadConfigurationFile() {
|
private static Properties loadConfigurationFile() {
|
||||||
Properties properties = new Properties();
|
Properties properties = new Properties();
|
||||||
|
|
||||||
String configurationFilePath =
|
String configurationFilePath =
|
||||||
|
|
Loading…
Reference in New Issue