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:
parent
af21820551
commit
cc353d738b
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ public abstract class AbstractCLaunchDelegate2 extends LaunchConfigurationDelega
|
|||
for (IProject proj : projects) {
|
||||
// The array will contain the top level project.
|
||||
// Ignore it since we handled it above
|
||||
if (proj == project) {
|
||||
if (proj.equals(project)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue