Improve code style

Co-Authored-By: B0pol <bopol@e.email>
This commit is contained in:
Tobias Groza 2020-03-07 19:10:32 +01:00
parent 8dd9b7caa5
commit 4d8d52094f

View file

@ -43,7 +43,7 @@ public final class NewPipeDatabase {
}
public static void checkpoint() {
if(null == databaseInstance){
if (databaseInstance == null) {
throw new IllegalStateException("database is not initialized");
}
Cursor c = databaseInstance.query("pragma wal_checkpoint(full)", null);