1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

fix for issue #634

This commit is contained in:
jan 2024-03-04 20:59:07 +01:00
parent b661f1757c
commit 9792393bcc

View file

@ -2461,7 +2461,8 @@ public class CProjectDescriptionManager implements ICProjectDescriptionManager {
@Override
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