Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2009-02-09 15:37:09 +0000
committerTomasz Zarna2009-02-09 15:37:09 +0000
commitc0f40b82163f91f878b49f4c30b7f191c90d122d (patch)
tree464994530420d2c1960b875a921d15265fbbb782 /bundles
parent3a879033d87a3f2acbf127f178c2d64f8302bd5c (diff)
downloadeclipse.platform.team-c0f40b82163f91f878b49f4c30b7f191c90d122d.tar.gz
eclipse.platform.team-c0f40b82163f91f878b49f4c30b7f191c90d122d.tar.xz
eclipse.platform.team-c0f40b82163f91f878b49f4c30b7f191c90d122d.zip
bug 260541: [Proxy] Eclipse CVS connections fail with the "Eclipse" Proxy provider
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxySelector.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxySelector.java b/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxySelector.java
index 8c143d270..f3f34e7de 100644
--- a/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxySelector.java
+++ b/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxySelector.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008 IBM Corporation and others.
+ * Copyright (c) 2008, 2009 IBM Corporation and others.
* All rights reserved. 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 available at
@@ -21,7 +21,7 @@ import org.eclipse.core.runtime.CoreException;
public class ProxySelector {
private static final String DIRECT_PROVIDER = "Direct"; //$NON-NLS-1$
- private static final String ECLIPSE_PROVIDER = "Eclipse"; //$NON-NLS-1$
+ private static final String ECLIPSE_PROVIDER = "Manual"; //$NON-NLS-1$
private static final String NATIVE_PROVIDER = "Native"; //$NON-NLS-1$
public static String[] getProviders() {

Back to the top