View | Details | Raw Unified | Return to bug 201790
Collapse All | Expand All

(-)src/org/eclipse/rse/files/ui/resources/UniversalFileTransferUtility.java (-1 / +6 lines)
Lines 23-28 Link Here
23
 * Xuan Chen        (IBM)        - [187548] Editor shows incorrect file name after renaming file on Linux dstore
23
 * Xuan Chen        (IBM)        - [187548] Editor shows incorrect file name after renaming file on Linux dstore
24
 * David McKnight   (IBM)        - [191472] should not use super transfer with SSH/FTP Folder Copy and Paste
24
 * David McKnight   (IBM)        - [191472] should not use super transfer with SSH/FTP Folder Copy and Paste
25
 * Xuan Chen (IBM)        - [191367] with supertransfer on, Drag & Drop Folder from DStore to DStore doesn't work
25
 * Xuan Chen (IBM)        - [191367] with supertransfer on, Drag & Drop Folder from DStore to DStore doesn't work
26
 * Xuan Chen (IBM)        - [201790] [dnd] Copy and Paste across connections to a Drive doesn't work
26
 ********************************************************************************/
27
 ********************************************************************************/
27
28
28
package org.eclipse.rse.files.ui.resources;
29
package org.eclipse.rse.files.ui.resources;
Lines 1018-1024 Link Here
1018
		}
1019
		}
1019
		else
1020
		else
1020
		{
1021
		{
1021
			newPathBuf.append(targetFolder.getSeparatorChar());
1022
			int newPathBufLenth = newPathBuf.length();
1023
			if (newPathBufLenth > 0 && !((newPathBuf.charAt(newPathBufLenth - 1) == targetFolder.getSeparatorChar())))
1024
			{
1025
				newPathBuf.append(targetFolder.getSeparatorChar());
1026
			}
1022
		}
1027
		}
1023
1028
1024
		List resources = workspaceSet.getResourceSet();
1029
		List resources = workspaceSet.getResourceSet();

Return to bug 201790