diff options
Diffstat (limited to 'libjava/classpath/java/security/cert/CertPathBuilderResult.java')
-rw-r--r-- | libjava/classpath/java/security/cert/CertPathBuilderResult.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/classpath/java/security/cert/CertPathBuilderResult.java b/libjava/classpath/java/security/cert/CertPathBuilderResult.java index 737ba9431b3..edae88f64c3 100644 --- a/libjava/classpath/java/security/cert/CertPathBuilderResult.java +++ b/libjava/classpath/java/security/cert/CertPathBuilderResult.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -47,17 +47,17 @@ package java.security.cert; */ public interface CertPathBuilderResult extends Cloneable { - /** + /** * Creates a copy of this builder result. * * @return The copy. */ - Object clone(); + Object clone(); /** * Get the certificate path that was built. * * @retrn The certificate path. */ - CertPath getCertPath(); + CertPath getCertPath(); } |