diff options
Diffstat (limited to 'java/security/KeyPairGeneratorSpi.java')
| -rw-r--r-- | java/security/KeyPairGeneratorSpi.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/security/KeyPairGeneratorSpi.java b/java/security/KeyPairGeneratorSpi.java index 1eaad9832..659f9d760 100644 --- a/java/security/KeyPairGeneratorSpi.java +++ b/java/security/KeyPairGeneratorSpi.java @@ -1,5 +1,5 @@ /* KeyPairGeneratorSpi.java --- Key Pair Generator SPI Class - Copyright (C) 1999, 2002 Free Software Foundation, Inc. + Copyright (C) 1999, 2002, 2015 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -76,6 +76,7 @@ public abstract class KeyPairGeneratorSpi @throws InvalidAlgorithmParameterException */ + @SuppressWarnings({"unused","static-method"}) public void initialize(AlgorithmParameterSpec params, SecureRandom random) throws InvalidAlgorithmParameterException { @@ -95,6 +96,7 @@ public abstract class KeyPairGeneratorSpi * We override clone here to make it accessible for use by * DummyKeyPairGenerator. */ + @Override protected Object clone() throws CloneNotSupportedException { return super.clone(); |
