Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 402539 | Differences between
and this patch

Collapse All | Expand All

(-)a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/UniversalFileTransferUtility.java (-2 / +5 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2006, 2012 IBM Corporation and others.
2
 * Copyright (c) 2006, 2013 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 65-70 Link Here
65
 * David McKnight     (IBM)      - [376410] cross-system copy/paste operation doesn't transfer remote encodings for binary files
65
 * David McKnight     (IBM)      - [376410] cross-system copy/paste operation doesn't transfer remote encodings for binary files
66
 * David McKnight     (IBM)      - [386486] when the original timestamp of a file is 0 don't set it after an upload
66
 * David McKnight     (IBM)      - [386486] when the original timestamp of a file is 0 don't set it after an upload
67
 * David McKnight   (IBM)        - [389838] Fast folder transfer does not account for code page
67
 * David McKnight   (IBM)        - [389838] Fast folder transfer does not account for code page
68
 * Samuel Wu        (IBM)        - [402533] UniversalFileTransferUtility threw NPE
68
 *******************************************************************************/
69
 *******************************************************************************/
69
70
70
package org.eclipse.rse.files.ui.resources;
71
package org.eclipse.rse.files.ui.resources;
Lines 1551-1557 Link Here
1551
		{
1552
		{
1552
			try
1553
			try
1553
			{
1554
			{
1554
				targetFolder = targetFS.getRemoteFileObject(targetFolder.getAbsolutePath(), monitor);
1555
				IRemoteFile currentTargetFolder = targetFS.getRemoteFileObject(targetFolder.getAbsolutePath(), monitor);
1556
				if (currentTargetFolder != null)
1557
					targetFolder = currentTargetFolder;
1555
			}
1558
			}
1556
			catch (Exception e)
1559
			catch (Exception e)
1557
			{
1560
			{

Return to bug 402539