mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Compilation warnings
This commit is contained in:
parent
289d4bbf35
commit
665a8be9c2
1 changed files with 2 additions and 1 deletions
|
@ -19,6 +19,7 @@ import org.eclipse.cdt.make.internal.ui.MakeUIPlugin;
|
|||
import org.eclipse.cdt.make.internal.ui.preferences.MakePreferencePage;
|
||||
import org.eclipse.cdt.ui.CUIPlugin;
|
||||
import org.eclipse.core.resources.IFile;
|
||||
import org.eclipse.core.resources.IProject;
|
||||
import org.eclipse.core.resources.IResource;
|
||||
import org.eclipse.core.resources.IWorkspaceRunnable;
|
||||
import org.eclipse.core.resources.ResourcesPlugin;
|
||||
|
@ -57,7 +58,7 @@ public class TargetBuild {
|
|||
if (!BuildAction.isSaveAllSet())
|
||||
return;
|
||||
|
||||
List projects = new ArrayList();
|
||||
List<IProject> projects = new ArrayList<IProject>();
|
||||
for (int i = 0; i < targets.length; ++i) {
|
||||
IMakeTarget target = targets[i];
|
||||
projects.add(target.getProject());
|
||||
|
|
Loading…
Add table
Reference in a new issue