Skip to content
Snippets Groups Projects
Commit 8a11ac3d authored by Chris Aniszczyk's avatar Chris Aniszczyk Committed by Code Review
Browse files

Merge "Add missing @Override tags in AlternateRepositoryDatabase"

parents c1c1300a bc238acd
No related branches found
No related tags found
Loading
...@@ -75,14 +75,17 @@ public Repository getRepository() { ...@@ -75,14 +75,17 @@ public Repository getRepository() {
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();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment