1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 15:15:25 +02:00

[191367] setting super transfer to be disabled by default. This doesn't solve the problem but it prevents the user from hitting this unless they change the preference.

This commit is contained in:
David McKnight 2007-06-07 16:10:34 +00:00
parent 7ccef31019
commit f669631dfe

View file

@ -13,6 +13,7 @@
*
* Contributors:
* {Name} (company) - description of contribution.
* David McKnight (IBM) - [191367] seeting supertransfer to be disabled by default
*******************************************************************************/
package org.eclipse.rse.internal.subsystems.files.core;
@ -45,7 +46,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;