Improve code style
Co-Authored-By: B0pol <bopol@e.email>
This commit is contained in:
parent
8dd9b7caa5
commit
4d8d52094f
1 changed files with 2 additions and 2 deletions
|
|
@ -43,11 +43,11 @@ public final class NewPipeDatabase {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void checkpoint() {
|
public static void checkpoint() {
|
||||||
if(null == databaseInstance){
|
if (databaseInstance == null) {
|
||||||
throw new IllegalStateException("database is not initialized");
|
throw new IllegalStateException("database is not initialized");
|
||||||
}
|
}
|
||||||
Cursor c = databaseInstance.query("pragma wal_checkpoint(full)", null);
|
Cursor c = databaseInstance.query("pragma wal_checkpoint(full)", null);
|
||||||
if(c.moveToFirst() && c.getInt(0) == 1) {
|
if (c.moveToFirst() && c.getInt(0) == 1) {
|
||||||
throw new RuntimeException("Checkpoint was blocked from completing");
|
throw new RuntimeException("Checkpoint was blocked from completing");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue