8069127: Suppress deprecation warnings in jdk.deploy.osx module
authordarcy
Thu, 15 Jan 2015 16:45:02 -0800
changeset 28430 a4f35c6aa3cc
parent 28429 be279feaeb8b
child 28431 a5c817e7ddb5
child 28528 6b55dd30a0ba
8069127: Suppress deprecation warnings in jdk.deploy.osx module Reviewed-by: wetmore, juh
jdk/src/jdk.deploy.osx/macosx/classes/apple/security/KeychainStore.java
--- a/jdk/src/jdk.deploy.osx/macosx/classes/apple/security/KeychainStore.java	Thu Jan 15 17:57:52 2015 +0000
+++ b/jdk/src/jdk.deploy.osx/macosx/classes/apple/security/KeychainStore.java	Thu Jan 15 16:45:02 2015 -0800
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -911,6 +911,7 @@
         return true;
     }
 
+    @SuppressWarnings("deprecation")
     private byte[] fetchPrivateKeyFromBag(byte[] privateKeyInfo) throws IOException, NoSuchAlgorithmException, CertificateException
     {
         byte[] returnValue = null;
@@ -971,6 +972,7 @@
         return returnValue;
     }
 
+    @SuppressWarnings("deprecation")
     private byte[] extractKeyData(DerInputStream stream)
         throws IOException, NoSuchAlgorithmException, CertificateException
     {