MergedReftable: Remove unnecessary semicolon

Change-Id: I67d2b8ba3cd8f94363cea864918c8ed6026f2d18
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2019-12-05 09:42:52 +09:00
parent 5185d288c1
commit 62d16a9146
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public boolean hasObjectMap() throws IOException {
boolean has = true;
for (int i = 0; has && i < tables.length; i++) {
has = has && tables[i].hasObjectMap();
};
}
return has;
}