From 57c85da2eaa2d8e22e7356785844c76259fedf8e Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Wed, 23 Apr 2008 21:07:50 +0000 Subject: [PATCH] [cleanup] changing @since tags from 2.1 to 3.0 --- .../org/eclipse/rse/core/PasswordPersistenceManager.java | 4 ++-- .../src/org/eclipse/rse/core/RSEPreferencesManager.java | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/PasswordPersistenceManager.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/PasswordPersistenceManager.java index a89de8599e5..bd4f11edb33 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/PasswordPersistenceManager.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/PasswordPersistenceManager.java @@ -60,7 +60,7 @@ public class PasswordPersistenceManager { // Add return codes public static final int RC_OK = 0; public static final int RC_ALREADY_EXISTS = 1; - /** @since org.eclipse.rse.core 2.1 */ + /** @since org.eclipse.rse.core 3.0 */ public static final int RC_DENIED = 2; public static final int RC_ERROR = -1; @@ -194,7 +194,7 @@ public class PasswordPersistenceManager { * @param systemType The system type of the host * @param hostName The IP address of the host in canonical format * @return the number of passwords removed from the keyring - * @since org.eclipse.rse.core 2.1 + * @since org.eclipse.rse.core 3.0 */ public int remove(IRSESystemType systemType, String hostName) { Map passwords = getPasswordMap(systemType); diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/RSEPreferencesManager.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/RSEPreferencesManager.java index 02809c98044..9e2c5fa39f4 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/RSEPreferencesManager.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/RSEPreferencesManager.java @@ -465,7 +465,7 @@ public class RSEPreferencesManager { * * @return the boolean value indicating whether or not to create a local * connection on a fresh workspace. - * @since org.eclipse.rse.core 2.1 + * @since org.eclipse.rse.core 3.0 */ public static boolean getCreateLocalConnection() { Preferences prefs = RSECorePlugin.getDefault().getPluginPreferences(); @@ -483,7 +483,7 @@ public class RSEPreferencesManager { * If true then all passwords that have been saved for this system type and host address are removed. * All passwords saved for the default system type and host address are also removed. * @return the number of passwords removed if deny was set to true - * @since org.eclipse.rse.core 2.1 + * @since org.eclipse.rse.core 3.0 */ public static int setDenyPasswordSave(IRSESystemType systemType, String hostAddress, boolean deny) { int result = 0; @@ -504,7 +504,7 @@ public class RSEPreferencesManager { * @param systemType * @param hostAddress * @return true if saving of passwords is denied. false if saving is allowed. - * @since org.eclipse.rse.core 2.1 + * @since org.eclipse.rse.core 3.0 */ public static boolean getDenyPasswordSave(IRSESystemType systemType, String hostAddress) { Preferences preferences = RSECorePlugin.getDefault().getPluginPreferences();