Add stubs

This commit is contained in:
Tony Torralba
2023-03-01 09:48:33 +01:00
parent db6cb1ffe3
commit 4e7dbbf5f0
557 changed files with 30438 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
// Generated automatically from javax.security.auth.Destroyable for testing purposes
package javax.security.auth;
public interface Destroyable
{
default boolean isDestroyed(){ return false; }
default void destroy(){}
}