diff options
author | Neil Fuller <nfuller@google.com> | 2015-11-30 09:51:33 +0000 |
---|---|---|
committer | Neil Fuller <nfuller@google.com> | 2015-12-02 14:24:11 +0000 |
commit | 71fbb81b14958b80fe55738607740c6630e4e9da (patch) | |
tree | 1f1be8961057d82b54b99637b8e6b423ff621575 /keystore/java/android/security/KeyChain.java | |
parent | 355a74f2842b44b0ae07c5f982c50761d47d9ca0 (diff) |
Fix @code escapes
The body of {@code} must not be HTML escaped. This is one of
several changes that fix the source in conjunction with a
doclava fix.
Bug: 25757239
Change-Id: Ib38a0fa2dd2a3d68e467f78a812071e763d7e881
Diffstat (limited to 'keystore/java/android/security/KeyChain.java')
-rw-r--r-- | keystore/java/android/security/KeyChain.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keystore/java/android/security/KeyChain.java b/keystore/java/android/security/KeyChain.java index 5b2594dcc9e7..40fb0d3750a8 100644 --- a/keystore/java/android/security/KeyChain.java +++ b/keystore/java/android/security/KeyChain.java @@ -457,9 +457,9 @@ public final class KeyChain { * KeyFactory keyFactory = * KeyFactory.getInstance(key.getAlgorithm(), "AndroidKeyStore"); * KeyInfo keyInfo = keyFactory.getKeySpec(key, KeyInfo.class); - * if (keyInfo.isInsideSecureHardware()) { + * if (keyInfo.isInsideSecureHardware()) { * // The key is bound to the secure hardware of this Android - * }}</pre> + * }}</pre> */ @Deprecated public static boolean isBoundKeyAlgorithm( |