diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 19:00:07 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 19:00:07 +0000 |
commit | d3d22a6a9f061b1903c6ec839ee1acaca063a23e (patch) | |
tree | 2af671e2772212be2424269d3f7cca08b3fe5238 /libjava/java/security/acl/Owner.java | |
parent | 92bd88b4f48c77bf7b44fec48e0a3886af89b68d (diff) | |
download | ppe42-gcc-d3d22a6a9f061b1903c6ec839ee1acaca063a23e.tar.gz ppe42-gcc-d3d22a6a9f061b1903c6ec839ee1acaca063a23e.zip |
2003-10-11 Michael Koch <konqueror@gmx.de>
* java/security/Key.java,
* java/security/PrivateKey.java,
* java/security/PublicKey.java,
* java/security/acl/Acl.java,
* java/security/acl/AclEntry.java,
* java/security/acl/Group.java,
* java/security/acl/Owner.java,
* java/security/acl/Permission.java,
* java/security/cert/X509Extension.java,
* java/security/interfaces/DSAKey.java,
* java/security/interfaces/DSAKeyPairGenerator.java,
* java/security/interfaces/DSAParams.java,
* java/security/interfaces/DSAPrivateKey.java,
* java/security/interfaces/DSAPublicKey.java,
* java/security/interfaces/RSAKey.java,
* java/security/interfaces/RSAPrivateCrtKey.java,
* java/security/interfaces/RSAPrivateKey.java,
* java/security/interfaces/RSAPublicKey.java:
Removed redundant modifiers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72360 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/security/acl/Owner.java')
-rw-r--r-- | libjava/java/security/acl/Owner.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/security/acl/Owner.java b/libjava/java/security/acl/Owner.java index e34e412bb6c..7732fc7f7b0 100644 --- a/libjava/java/security/acl/Owner.java +++ b/libjava/java/security/acl/Owner.java @@ -64,7 +64,7 @@ public interface Owner * * @exception NotOwnerException If the caller is not already an owner of this ACL */ - public abstract boolean addOwner(Principal caller, Principal owner) + boolean addOwner(Principal caller, Principal owner) throws NotOwnerException; /** @@ -82,7 +82,7 @@ public interface Owner * @exception NotOwnerException If the caller is not already an owner of this ACL * @exception LastOwnerException If completing the operation would delete the last ACL owner */ - public abstract boolean deleteOwner(Principal caller, Principal owner) + boolean deleteOwner(Principal caller, Principal owner) throws NotOwnerException, LastOwnerException; /** @@ -91,5 +91,5 @@ public interface Owner * * @return <code>true</code> if the <code>Principal</code> is an owner, <code>false</code> otherwise */ - public abstract boolean isOwner(Principal owner); + boolean isOwner(Principal owner); } |