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 402540
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 64-69 Link Here
64
 * David McKnight     (IBM)      - [376410] cross-system copy/paste operation doesn't transfer remote encodings for binary files
64
 * David McKnight     (IBM)      - [376410] cross-system copy/paste operation doesn't transfer remote encodings for binary files
65
 * David McKnight     (IBM)      - [386486] when the original timestamp of a file is 0 don't set it after an upload
65
 * David McKnight     (IBM)      - [386486] when the original timestamp of a file is 0 don't set it after an upload
66
 * David McKnight   (IBM)        - [389838] Fast folder transfer does not account for code page
66
 * David McKnight   (IBM)        - [389838] Fast folder transfer does not account for code page
67
 * Samuel Wu        (IBM)        - [402533] UniversalFileTransferUtility threw NPE
67
 *******************************************************************************/
68
 *******************************************************************************/
68
69
69
package org.eclipse.rse.files.ui.resources;
70
package org.eclipse.rse.files.ui.resources;
Lines 1550-1556 Link Here
1550
		{
1551
		{
1551
			try
1552
			try
1552
			{
1553
			{
1553
				targetFolder = targetFS.getRemoteFileObject(targetFolder.getAbsolutePath(), monitor);
1554
				IRemoteFile currentTargetFolder = targetFS.getRemoteFileObject(targetFolder.getAbsolutePath(), monitor);
1555
				if (currentTargetFolder != null)
1556
					targetFolder = currentTargetFolder;
1554
			}
1557
			}
1555
			catch (Exception e)
1558
			catch (Exception e)
1556
			{
1559
			{

Return to bug 402540