1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 20:45:22 +02:00

[cleanup] Fix copyright year

This commit is contained in:
Martin Oberhuber 2009-02-01 15:34:12 +00:00
parent ce7d62d66d
commit 362171d6ad

View file

@ -1,13 +1,13 @@
/******************************************************************************** /********************************************************************************
* Copyright (c) 20089 IBM Corporation. All rights reserved. * Copyright (c) 2009 IBM Corporation. All rights reserved.
* This program and the accompanying materials are made available under the terms * This program and the accompanying materials are made available under the terms
* of the Eclipse Public License v1.0 which accompanies this distribution, and is * of the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html * available at http://www.eclipse.org/legal/epl-v10.html
* *
* Initial Contributors: * Initial Contributors:
* The following IBM employees contributed to the Remote System Explorer * The following IBM employees contributed to the Remote System Explorer
* component that contains this file: David McKnight. * component that contains this file: David McKnight.
* *
* Contributors: * Contributors:
* David McKnight (IBM) - [259905][api] provide public API for getting/setting key managers for SSLContext * David McKnight (IBM) - [259905][api] provide public API for getting/setting key managers for SSLContext
********************************************************************************/ ********************************************************************************/
@ -26,7 +26,7 @@ public class BaseSSLContext {
public static void setKeyManagers(KeyManager[] keyManagers){ public static void setKeyManagers(KeyManager[] keyManagers){
_keyManagers = keyManagers; _keyManagers = keyManagers;
} }
public static KeyManager[] getKeyManagers(){ public static KeyManager[] getKeyManagers(){
return _keyManagers; return _keyManagers;
} }