diff options
author | Kenny Root <kroot@google.com> | 2013-03-07 13:20:00 -0800 |
---|---|---|
committer | Kenny Root <kroot@google.com> | 2013-03-07 13:20:00 -0800 |
commit | 4e74f18c791e6d005c78a421875ae9bf89228981 (patch) | |
tree | bb653e5461635279472faea36ab15fdf6eb8e874 /luni | |
parent | 8f4a284a73b1da82eefb5d53b0e84312d560924e (diff) | |
download | libcore-4e74f18c791e6d005c78a421875ae9bf89228981.zip libcore-4e74f18c791e6d005c78a421875ae9bf89228981.tar.gz libcore-4e74f18c791e6d005c78a421875ae9bf89228981.tar.bz2 |
NativeCrypto: eliminate some unneeded suppressions
Refactoring eliminated the need for these suppressions, so just remove
them.
Change-Id: Ia7f0160d4b5db09a1d23029f3cd2755ef2bd59d6
Diffstat (limited to 'luni')
-rw-r--r-- | luni/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLX509CertificateFactory.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLX509CertificateFactory.java b/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLX509CertificateFactory.java index 29b1d25..0bdc1ce 100644 --- a/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLX509CertificateFactory.java +++ b/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLX509CertificateFactory.java @@ -263,7 +263,6 @@ public class OpenSSLX509CertificateFactory extends CertificateFactorySpi { } } - @SuppressWarnings("unchecked") @Override public Collection<? extends Certificate> engineGenerateCertificates( InputStream inStream) throws CertificateException { @@ -283,7 +282,6 @@ public class OpenSSLX509CertificateFactory extends CertificateFactorySpi { } } - @SuppressWarnings("unchecked") @Override public Collection<? extends CRL> engineGenerateCRLs(InputStream inStream) throws CRLException { try { |