Exposed backing fields for StorageSystem.DiskBuilder

This commit is contained in:
nathan 2020-09-15 17:07:01 +02:00
parent 90e35d00bc
commit 6906106745
1 changed files with 5 additions and 5 deletions

View File

@ -151,11 +151,11 @@ class StorageSystem {
@SuppressWarnings("unused")
public static
class DiskBuilder implements StorageBuilder {
private File file;
private SerializationManager<?> serializationManager = new DefaultStorageSerializationManager(); // default
private boolean readOnly = false;
private Logger logger = null;
private long saveDelayInMilliseconds = 3000L; // default
public File file;
public SerializationManager<?> serializationManager = new DefaultStorageSerializationManager(); // default
public boolean readOnly = false;
public Logger logger = null;
public long saveDelayInMilliseconds = 3000L; // default
/**
* Specify the file to write to on disk when saving objects