Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2002-04-10 20:45:15 +0000
committerMichael Valenta2002-04-10 20:45:15 +0000
commit2392c39610975c1065981e386cefd32a979d7565 (patch)
treef6ba448fd836325a881e3a0ac40bd0b581f74d19
parentdae420a89a5e93a501c6183e6ec2f5c8ce2e7775 (diff)
downloadeclipse.platform.team-2392c39610975c1065981e386cefd32a979d7565.tar.gz
eclipse.platform.team-2392c39610975c1065981e386cefd32a979d7565.tar.xz
eclipse.platform.team-2392c39610975c1065981e386cefd32a979d7565.zip
Change default compression level to 0
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java
index 4a55d2544..e9429b1dd 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java
@@ -50,7 +50,7 @@ public class CVSProviderPlugin extends Plugin {
// communication timeout with the server
public static final int DEFAULT_TIMEOUT = 60;
// file transfer compression level (0 - 9)
- public static final int DEFAULT_COMPRESSION_LEVEL = 6;
+ public static final int DEFAULT_COMPRESSION_LEVEL = 0;
// cvs plugin extension points and ids
public static final String ID = "org.eclipse.team.cvs.core"; //$NON-NLS-1$

Back to the top