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:
parent
e3aab4027a
commit
b3129ef983
1 changed files with 5 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue