|
|
@ -75,14 +75,17 @@ public final class AlternateRepositoryDatabase extends ObjectDatabase { |
|
|
|
return repository; |
|
|
|
return repository; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public void closeSelf() { |
|
|
|
public void closeSelf() { |
|
|
|
repository.close(); |
|
|
|
repository.close(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public void create() throws IOException { |
|
|
|
public void create() throws IOException { |
|
|
|
repository.create(); |
|
|
|
repository.create(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public boolean exists() { |
|
|
|
public boolean exists() { |
|
|
|
return odb.exists(); |
|
|
|
return odb.exists(); |
|
|
|
} |
|
|
|
} |
|
|
|