This commit is contained in:
Simon Willnauer 2015-10-26 11:08:10 +01:00
parent edef67ffdc
commit c41dd965fb

View File

@ -80,7 +80,7 @@ public abstract class Engine implements Closeable {
protected final ReleasableLock readLock = new ReleasableLock(rwl.readLock());
protected final ReleasableLock writeLock = new ReleasableLock(rwl.writeLock());
protected volatile Throwable failedEngine = null;
protected volatile long lastWriteNanos;
protected volatile long lastWriteNanos;
protected Engine(EngineConfig engineConfig) {
Objects.requireNonNull(engineConfig.getStore(), "Store must be provided to the engine");