Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2bec096 authored by Jeffrey Brown's avatar Jeffrey Brown Committed by Gerrit Code Review
Browse files

Merge "NullPointerException in SQLiteSession"

parents b9185fd1 0b6cc9ac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -926,7 +926,7 @@ public final class SQLiteSession {
    }

    private void throwIfNestedTransaction() {
        if (mTransactionStack == null && mTransactionStack.mParent != null) {
        if (hasNestedTransaction()) {
            throw new IllegalStateException("Cannot perform this operation because "
                    + "a nested transaction is in progress.");
        }