1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 04:55:22 +02:00

Bug 309126: Build before launch does too much building with project references (fix shallow comparison of project references)

This commit is contained in:
John Cortell 2010-05-25 23:16:51 +00:00
parent af21820551
commit cc353d738b

View file

@ -469,7 +469,7 @@ public abstract class AbstractCLaunchDelegate2 extends LaunchConfigurationDelega
for (IProject proj : projects) { for (IProject proj : projects) {
// The array will contain the top level project. // The array will contain the top level project.
// Ignore it since we handled it above // Ignore it since we handled it above
if (proj == project) { if (proj.equals(project)) {
continue; continue;
} }