8069127: Suppress deprecation warnings in jdk.deploy.osx module

Reviewed-by: wetmore, juh
This commit is contained in:
Joe Darcy 2015-01-15 16:45:02 -08:00
parent f46b3d442f
commit c0500545f7

View File

@ -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 @@ public final class KeychainStore extends KeyStoreSpi {
return true;
}
@SuppressWarnings("deprecation")
private byte[] fetchPrivateKeyFromBag(byte[] privateKeyInfo) throws IOException, NoSuchAlgorithmException, CertificateException
{
byte[] returnValue = null;
@ -971,6 +972,7 @@ public final class KeychainStore extends KeyStoreSpi {
return returnValue;
}
@SuppressWarnings("deprecation")
private byte[] extractKeyData(DerInputStream stream)
throws IOException, NoSuchAlgorithmException, CertificateException
{