mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
call super() in the constructor.
This commit is contained in:
parent
3982815009
commit
00083a79bd
1 changed files with 2 additions and 0 deletions
|
@ -46,6 +46,7 @@ public class SetCPathEntriesOperation extends CModelOperation {
|
||||||
CProject project;
|
CProject project;
|
||||||
|
|
||||||
public SetCPathEntriesOperation(CProject project, ICPathEntry[] oldEntries, ICPathEntry[] newEntries) {
|
public SetCPathEntriesOperation(CProject project, ICPathEntry[] oldEntries, ICPathEntry[] newEntries) {
|
||||||
|
super(project);
|
||||||
this.oldEntries = oldEntries;
|
this.oldEntries = oldEntries;
|
||||||
this.newEntries = newEntries;
|
this.newEntries = newEntries;
|
||||||
this.project = project;
|
this.project = project;
|
||||||
|
@ -214,6 +215,7 @@ public class SetCPathEntriesOperation extends CModelOperation {
|
||||||
}
|
}
|
||||||
if (celement != null) {
|
if (celement != null) {
|
||||||
delta.changed(celement, flag);
|
delta.changed(celement, flag);
|
||||||
|
addDelta(delta);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue