1
0
Fork 0
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:
Alain Magloire 2003-12-11 18:39:44 +00:00
parent 3982815009
commit 00083a79bd

View file

@ -46,6 +46,7 @@ public class SetCPathEntriesOperation extends CModelOperation {
CProject project;
public SetCPathEntriesOperation(CProject project, ICPathEntry[] oldEntries, ICPathEntry[] newEntries) {
super(project);
this.oldEntries = oldEntries;
this.newEntries = newEntries;
this.project = project;
@ -214,6 +215,7 @@ public class SetCPathEntriesOperation extends CModelOperation {
}
if (celement != null) {
delta.changed(celement, flag);
addDelta(delta);
}
}
}