Code reformatting for upcoming annotations.

@UnsupportedAppUsage annotations are added automatically, but this does
not work when there are multiple definitions on the same line.

Test: m
Bug: 110868826
Change-Id: I2c26c136cdfa557e45cf1ee0b39dab9c17abde56
This commit is contained in:
Mathew Inwood
2018-08-01 10:24:49 +01:00
parent b6b8516ba0
commit efb481646e

View File

@@ -104,7 +104,11 @@ public class KeyStore {
public static final int FLAG_CRITICAL_TO_DEVICE_ENCRYPTION = 1 << 3;
// States
public enum State { UNLOCKED, LOCKED, UNINITIALIZED };
public enum State {
UNLOCKED,
LOCKED,
UNINITIALIZED
};
private int mError = NO_ERROR;