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

Commit 6b1dcd99 authored by Tianjie Xu's avatar Tianjie Xu Committed by Automerger Merge Worker
Browse files

Merge "Make AndroidKeyStoreLoadStoreParameter public" am: 697c19be

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1531239

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I5db4fa1c402eabe2817d0fa0cc3b41f53111c49f
parents f462515b 697c19be
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -22,11 +22,11 @@ import java.security.KeyStore.ProtectionParameter;
/**
 * @hide
 */
class AndroidKeyStoreLoadStoreParameter implements KeyStore.LoadStoreParameter {
public class AndroidKeyStoreLoadStoreParameter implements KeyStore.LoadStoreParameter {

    private final int mNamespace;

    AndroidKeyStoreLoadStoreParameter(int namespace) {
    public AndroidKeyStoreLoadStoreParameter(int namespace) {
        mNamespace = namespace;
    }