Skip to content
Snippets Groups Projects
Commit ea917e52 authored by Sergio Giro's avatar Sergio Giro Committed by android-build-merger
Browse files

api: destroy() and isDestroyed() methods are now default in Destroyable

am: 8261d1e0

Change-Id: I0f377bfb1f091e642091859fbb045ccfe63ba0e5
parents 9ab5255e 8261d1e0
No related branches found
No related tags found
No related merge requests found
......@@ -55019,9 +55019,7 @@ package java.security {
 
public static class KeyStore.PasswordProtection implements javax.security.auth.Destroyable java.security.KeyStore.ProtectionParameter {
ctor public KeyStore.PasswordProtection(char[]);
method public synchronized void destroy() throws javax.security.auth.DestroyFailedException;
method public synchronized char[] getPassword();
method public synchronized boolean isDestroyed();
}
 
public static final class KeyStore.PrivateKeyEntry implements java.security.KeyStore.Entry {
......@@ -64765,8 +64763,8 @@ package javax.security.auth {
}
 
public abstract interface Destroyable {
method public abstract void destroy() throws javax.security.auth.DestroyFailedException;
method public abstract boolean isDestroyed();
method public default void destroy() throws javax.security.auth.DestroyFailedException;
method public default boolean isDestroyed();
}
 
public final class PrivateCredentialPermission extends java.security.Permission {
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment