OSDN Git Service

Merge "Hide @IntDef and @StringDef annotations from AnroidKeyStore API." into mnc-dev
authorAlex Klyubin <klyubin@google.com>
Tue, 12 May 2015 16:56:10 +0000 (16:56 +0000)
committerAndroid (Google) Code Review <android-gerrit@google.com>
Tue, 12 May 2015 16:56:15 +0000 (16:56 +0000)
1  2 
api/current.txt
api/system-current.txt
keystore/java/android/security/EcIesParameterSpec.java
keystore/java/android/security/KeyStoreKeyProperties.java

diff --cc api/current.txt
Simple merge
Simple merge
@@@ -51,12 -49,11 +51,15 @@@ import javax.crypto.Mac
   */
  public class EcIesParameterSpec implements AlgorithmParameterSpec {
  
+     /**
+      * @hide
+      */
      @Retention(RetentionPolicy.SOURCE)
 -    @IntDef(value = {PointFormat.UNCOMPRESSED, PointFormat.COMPRESSED})
 +    @IntDef({
 +        PointFormat.UNSPECIFIED,
 +        PointFormat.UNCOMPRESSED,
 +        PointFormat.COMPRESSED,
 +        })
      public @interface PointFormatEnum {}
  
      /**