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:
parent
d9da4ec9a2
commit
9fc7a45a18
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue