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 279781
Collapse All | Expand All

(-)src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java (+6 lines)
Lines 1353-1358 Link Here
1353
			// if location is null, project already exists in this location or
1353
			// if location is null, project already exists in this location or
1354
			// some error condition occured.
1354
			// some error condition occured.
1355
			if (locationURI != null) {
1355
			if (locationURI != null) {
1356
				// validate the location of the project being copied
1357
				IStatus result = ResourcesPlugin.getWorkspace().validateProjectLocationURI(project,
1358
						locationURI);
1359
				if(!result.isOK())					
1360
					throw new InvocationTargetException(new CoreException(result));
1361
				
1356
				importSource = new File(locationURI);
1362
				importSource = new File(locationURI);
1357
				IProjectDescription desc = workspace
1363
				IProjectDescription desc = workspace
1358
						.newProjectDescription(projectName);
1364
						.newProjectDescription(projectName);

Return to bug 279781