mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 02:06:01 +02:00
fix for issue #634
This commit is contained in:
parent
b661f1757c
commit
9792393bcc
1 changed files with 2 additions and 1 deletions
|
@ -2461,7 +2461,8 @@ public class CProjectDescriptionManager implements ICProjectDescriptionManager {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isNewStyleProject(IProject project) {
|
public boolean isNewStyleProject(IProject project) {
|
||||||
return isNewStyleProject(getProjectDescription(project, false));
|
System.out.println("calling isNewStyleProject for project " + project.getName());
|
||||||
|
return isNewStyleProject(getProjectDescription(project, false, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue