NoteDbUpdateManager: Remove unused flush method

Change-Id: I265cedca9de58da7c62c6783495a34fe7f5ff3c9
This commit is contained in:
Dave Borowitz
2017-04-13 12:56:37 -04:00
parent fea441b8a1
commit 4004a68609

View File

@@ -455,15 +455,6 @@ public class NoteDbUpdateManager implements AutoCloseable {
return draftIds;
}
public void flush() throws IOException {
if (changeRepo != null) {
changeRepo.flush();
}
if (allUsersRepo != null) {
allUsersRepo.flush();
}
}
@Nullable
public BatchRefUpdate execute() throws OrmException, IOException {
return execute(false);