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

Commit ee302758 authored by Kenny Root's avatar Kenny Root Committed by Android (Google) Code Review
Browse files

Merge "KeySetManager: change KEYSET_NOT_FOUND to public"

parents 242f1f3f 9a995f57
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -42,7 +42,10 @@ public class KeySetManager {

    static final String TAG = "KeySetManager";

    private static final long KEYSET_NOT_FOUND = -1;
    /** Sentinel value returned when a {@code KeySet} is not found. */
    public static final long KEYSET_NOT_FOUND = -1;

    /** Sentinel value returned when public key is not found. */
    private static final long PUBLIC_KEY_NOT_FOUND = -1;

    private final Object mLockObject = new Object();