Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2004-04-14 16:36:39 +0000
committerJean Michel-Lemieux2004-04-14 16:36:39 +0000
commit33efc21049605ec29f12723ee3d2834377c227a2 (patch)
tree62f6d06fac6f3714a76839d5f4c82afc7aa17d68 /bundles/org.eclipse.team.cvs.ssh2/src/org/eclipse
parente27118c70d1d96e3c6d13c92a37b00424b2b3a2f (diff)
downloadeclipse.platform.team-33efc21049605ec29f12723ee3d2834377c227a2.tar.gz
eclipse.platform.team-33efc21049605ec29f12723ee3d2834377c227a2.tar.xz
eclipse.platform.team-33efc21049605ec29f12723ee3d2834377c227a2.zip
Allows users to determine if password caching should be enabled. And users
can manage saved passwords.
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ssh2/src/org/eclipse')
-rw-r--r--bundles/org.eclipse.team.cvs.ssh2/src/org/eclipse/team/internal/ccvs/ssh2/CVSSSH2PreferencePage.java10
1 files changed, 1 insertions, 9 deletions
diff --git a/bundles/org.eclipse.team.cvs.ssh2/src/org/eclipse/team/internal/ccvs/ssh2/CVSSSH2PreferencePage.java b/bundles/org.eclipse.team.cvs.ssh2/src/org/eclipse/team/internal/ccvs/ssh2/CVSSSH2PreferencePage.java
index 6f0e35e8c..821550214 100644
--- a/bundles/org.eclipse.team.cvs.ssh2/src/org/eclipse/team/internal/ccvs/ssh2/CVSSSH2PreferencePage.java
+++ b/bundles/org.eclipse.team.cvs.ssh2/src/org/eclipse/team/internal/ccvs/ssh2/CVSSSH2PreferencePage.java
@@ -73,7 +73,6 @@ public class CVSSSH2PreferencePage extends PreferencePage
private Text privateKeyText;
private Button enableProxy;
private Button enableAuth;
- private Button enableSSH2;
private Button privateKeyAdd;
private boolean useProxy;
private boolean useAuth;
@@ -152,12 +151,6 @@ public class CVSSSH2PreferencePage extends PreferencePage
data.horizontalAlignment = GridData.FILL;
group.setLayoutData(data);
- enableSSH2=new Button(group, SWT.CHECK);
- enableSSH2.setText(Policy.bind("CVSSSH2PreferencePage.22")); //$NON-NLS-1$
- GridData gd=new GridData();
- gd.horizontalSpan=3;
- enableSSH2.setLayoutData(gd);
-
createSpacer(group, 3);
ssh2HomeLabel=new Label(group, SWT.NONE);
@@ -165,7 +158,7 @@ public class CVSSSH2PreferencePage extends PreferencePage
ssh2HomeText=new Text(group, SWT.SINGLE | SWT.BORDER);
ssh2HomeText.setFont(group.getFont());
- gd=new GridData(GridData.FILL_HORIZONTAL);
+ GridData gd=new GridData(GridData.FILL_HORIZONTAL);
gd.horizontalSpan=1;
ssh2HomeText.setLayoutData(gd);
@@ -175,7 +168,6 @@ public class CVSSSH2PreferencePage extends PreferencePage
gd.horizontalSpan=1;
ssh2HomeBrowse.setLayoutData(gd);
-
createSpacer(group, 3);
privateKeyLabel=new Label(group, SWT.NONE);

Back to the top