diff options
author | Mathew Inwood <mathewi@google.com> | 2018-08-01 16:01:52 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-08-01 16:01:52 -0700 |
commit | 02763a1c3ee13389598bfd00f895845b32cb3a93 (patch) | |
tree | caa7dd0704a799664e9b09f53e1bd43e3a3ffde6 /keystore/java/android/security/KeyStore.java | |
parent | 582d18c02b706199324b38b449860e281249df4e (diff) | |
parent | 60c8cfdd0ff09070ac8d121416a8df90e6c037d7 (diff) |
Merge "Code reformatting for upcoming annotations."
am: 60c8cfdd0f
Change-Id: I4fcf520f53dddd6e70edf0d59fd13ae218c336a5
Diffstat (limited to 'keystore/java/android/security/KeyStore.java')
-rw-r--r-- | keystore/java/android/security/KeyStore.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/keystore/java/android/security/KeyStore.java b/keystore/java/android/security/KeyStore.java index fe05c13c999b..3ea1f2645af8 100644 --- a/keystore/java/android/security/KeyStore.java +++ b/keystore/java/android/security/KeyStore.java @@ -128,7 +128,11 @@ public class KeyStore { public static final int FLAG_STRONGBOX = 1 << 4; // States - public enum State { UNLOCKED, LOCKED, UNINITIALIZED }; + public enum State { + UNLOCKED, + LOCKED, + UNINITIALIZED + }; private int mError = NO_ERROR; |