Remove final modifier from private method.

This commit is contained in:
Karsten Loesing 2019-11-20 16:44:25 +01:00
parent 86f8001590
commit ccdad654f2

View File

@ -77,7 +77,7 @@ public class Configuration extends Observable implements Cloneable {
}, 5, 5, TimeUnit.SECONDS);
}
private final void reload() throws IOException {
private void reload() throws IOException {
props.clear();
try (FileInputStream fis
= new FileInputStream(configurationFile.toFile())) {