Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Recoskie2009-11-10 15:14:16 +0000
committerChris Recoskie2009-11-10 15:14:16 +0000
commit42111501e2e6eaebda753019b43fe5ddc1a8b022 (patch)
treeaf8d36dc5d96a036079ea6683289a57682a63985
parenta529aa31cddfa46f171ffbbd87d3697b13b2b2f9 (diff)
downloadorg.eclipse.cdt-42111501e2e6eaebda753019b43fe5ddc1a8b022.tar.gz
org.eclipse.cdt-42111501e2e6eaebda753019b43fe5ddc1a8b022.tar.xz
org.eclipse.cdt-42111501e2e6eaebda753019b43fe5ddc1a8b022.zip
organize imports
-rw-r--r--xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/PerProjectXLCScannerInfoCollector.java9
1 files changed, 1 insertions, 8 deletions
diff --git a/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/PerProjectXLCScannerInfoCollector.java b/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/PerProjectXLCScannerInfoCollector.java
index 5cd2469976e..92d66aac60e 100644
--- a/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/PerProjectXLCScannerInfoCollector.java
+++ b/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/PerProjectXLCScannerInfoCollector.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 20089 IBM Corporation and others.
+ * Copyright (c) 2007, 2009 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
@@ -10,16 +10,9 @@
*******************************************************************************/
package org.eclipse.cdt.make.xlc.core.scannerconfig;
-import java.util.Arrays;
-import java.util.LinkedList;
-import java.util.List;
-import java.util.Map;
-
import org.eclipse.cdt.make.core.scannerconfig.IScannerInfoCollector3;
-import org.eclipse.cdt.make.internal.core.scannerconfig2.PerFileSICollector;
import org.eclipse.cdt.make.internal.core.scannerconfig2.PerProjectSICollector;
import org.eclipse.cdt.managedbuilder.scannerconfig.IManagedScannerInfoCollector;
-import org.eclipse.core.runtime.IPath;
/**
* @author laggarcia

Back to the top