Skip to content

Commit 9792393

Browse files
author
jan
committed
fix for issue #634
1 parent b661f17 commit 9792393

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/settings/model/CProjectDescriptionManager.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -2461,7 +2461,8 @@ public boolean isNewStyleIndexCfg(ICProjectDescription des) {
24612461

24622462
@Override
24632463
public boolean isNewStyleProject(IProject project) {
2464-
return isNewStyleProject(getProjectDescription(project, false));
2464+
System.out.println("calling isNewStyleProject for project " + project.getName());
2465+
return isNewStyleProject(getProjectDescription(project, false, false));
24652466
}
24662467

24672468
@Override

0 commit comments

Comments
 (0)