Created LockBasedStorageManagerWithExceptionTracking

This commit is contained in:
Andrey Breslav
2014-01-30 00:29:57 +04:00
parent 26ecf7666d
commit 0f4994f8b0
3 changed files with 81 additions and 1 deletions
@@ -81,7 +81,7 @@ public class LockBasedStorageManager implements StorageManager {
this(getPointOfConstruction(), ExceptionHandlingStrategy.THROW, new ReentrantLock());
}
private LockBasedStorageManager(@NotNull ExceptionHandlingStrategy exceptionHandlingStrategy) {
protected LockBasedStorageManager(@NotNull ExceptionHandlingStrategy exceptionHandlingStrategy) {
this(getPointOfConstruction(), exceptionHandlingStrategy, new ReentrantLock());
}