Merge "Add missing @Override tags in AlternateRepositoryDatabase"

This commit is contained in:
Chris Aniszczyk 2010-06-15 11:40:04 -04:00 committed by Code Review
commit 8a11ac3d69
1 changed files with 3 additions and 0 deletions

View File

@ -75,14 +75,17 @@ public Repository getRepository() {
return repository;
}
@Override
public void closeSelf() {
repository.close();
}
@Override
public void create() throws IOException {
repository.create();
}
@Override
public boolean exists() {
return odb.exists();
}