diff options
author | Dani Megert | 2011-04-14 13:15:58 +0000 |
---|---|---|
committer | Dani Megert | 2011-04-14 13:15:58 +0000 |
commit | f5e6faa6c6fd643edfc16c7fb56677f99c05dfd1 (patch) | |
tree | be89415cbd0cc99daf4b1740fbd36265d63ab1d7 | |
parent | b8127d552be0b588b3eaba4aa5dc1108755154e2 (diff) | |
download | eclipse.platform.debug-f5e6faa6c6fd643edfc16c7fb56677f99c05dfd1.tar.gz eclipse.platform.debug-f5e6faa6c6fd643edfc16c7fb56677f99c05dfd1.tar.xz eclipse.platform.debug-f5e6faa6c6fd643edfc16c7fb56677f99c05dfd1.zip |
Don't move linked resources on the EFS.
-rw-r--r-- | org.eclipse.debug.tests/src/org/eclipe/debug/tests/launching/LaunchConfigurationTests.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.tests/src/org/eclipe/debug/tests/launching/LaunchConfigurationTests.java b/org.eclipse.debug.tests/src/org/eclipe/debug/tests/launching/LaunchConfigurationTests.java index a72614b4d..5b669e477 100644 --- a/org.eclipse.debug.tests/src/org/eclipe/debug/tests/launching/LaunchConfigurationTests.java +++ b/org.eclipse.debug.tests/src/org/eclipe/debug/tests/launching/LaunchConfigurationTests.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2010 IBM Corporation and others. + * Copyright (c) 2000, 2011 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -1036,7 +1036,7 @@ public class LaunchConfigurationTests extends AbstractLaunchTest implements ILau // rename project IProjectDescription description = project.getDescription(); description.setName("SFEemaneR"); // reverse name - project.move(description, false, null); + project.move(description, IResource.SHALLOW, null); // original configuration should no longer exist - handle out of date assertTrue("Configuration should not exist", !handle.exists()); //$NON-NLS-1$ |