Add missing @Override tags in AlternateRepositoryDatabase

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
Shawn O. Pearce 2009-07-25 17:33:30 -07:00
parent 44ba1bc78c
commit bc238acdc5
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();
}