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

Commit f0da0bf7 authored by David van Tonder's avatar David van Tonder Committed by Gerrit Code Review
Browse files

Merge "SQLiteSession: Use hasNestedException() method instead of direct check" into jellybean

parents 073c3f09 39e46cea
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.");
        }