# HG changeset patch # User darcy # Date 1421369102 28800 # Node ID a4f35c6aa3cc5446a7fb40ecb4e267bcda9846e9 # Parent be279feaeb8bd3a6baaa5aad95c93248773a126b 8069127: Suppress deprecation warnings in jdk.deploy.osx module Reviewed-by: wetmore, juh diff -r be279feaeb8b -r a4f35c6aa3cc 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 {