Updated network PropertyStore to be final (it's only intended to be

used if there is no other SettingStore available)
This commit is contained in:
nathan 2016-03-13 01:11:51 +01:00
parent f2727e4fdb
commit 79ecc1da51

View File

@ -33,12 +33,13 @@ import java.util.Map;
/** /**
* The property store is the DEFAULT type of store for the network stack. * The property store is the DEFAULT type of store for the network stack.
* This is package private. * This is package private, and not intended to be extended!.
*/ */
final
class PropertyStore extends SettingsStore { class PropertyStore extends SettingsStore {
protected Storage storage; private Storage storage;
protected Map<ByteArrayWrapper, DB_Server> servers; private Map<ByteArrayWrapper, DB_Server> servers;
PropertyStore() { PropertyStore() {
} }