1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

[265620] - restore protected method which does not use MyBoolean

This commit is contained in:
Alena Laskavaia 2009-02-20 15:32:25 +00:00
parent e3aab4027a
commit b3129ef983

View file

@ -543,7 +543,11 @@ public class CommonBuilder extends ACBuilder {
return projects;
}
protected IProject[] build(int kind, IProject project, IBuilder[] builders, boolean isForeground, IProgressMonitor monitor, MyBoolean isBuild) throws CoreException{
protected IProject[] build(int kind, IProject project, IBuilder[] builders, boolean isForeground, IProgressMonitor monitor) throws CoreException{
return build(kind, project, builders, isForeground, monitor, new MyBoolean(false));
}
private IProject[] build(int kind, IProject project, IBuilder[] builders, boolean isForeground, IProgressMonitor monitor, MyBoolean isBuild) throws CoreException{
if(!isCdtProjectCreated(project))
return project.getReferencedProjects();