1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-28 18:53:20 +02:00

[202686] fix: Supertransfer should be disabled by default for 2.0.1

This commit is contained in:
Xuan Chen 2007-09-12 22:34:39 +00:00
parent d9da4ec9a2
commit 9fc7a45a18

View file

@ -15,6 +15,7 @@
* {Name} (company) - description of contribution.
* David McKnight (IBM) - [191367] setting supertransfer to be disabled by default
* Xuan Chen (IBM) - [191367] setting supertransfer back to enabled by default
* Xuan Chen (IBM) - [202686] Supertransfer should be disabled by default for 2.0.1
*******************************************************************************/
package org.eclipse.rse.internal.subsystems.files.core;
@ -47,7 +48,7 @@ public interface ISystemFilePreferencesConstants
public static final int FILETRANSFERMODE_TEXT = 1;
public static final String DEFAULT_SUPERTRANSFER_ARCHIVE_TYPE = "zip"; //$NON-NLS-1$
public static final boolean DEFAULT_DOSUPERTRANSFER = true;
public static final boolean DEFAULT_DOSUPERTRANSFER = false;
public static final int DEFAULT_DOWNLOAD_BUFFER_SIZE = 40;