1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-29 11:55:40 +02:00

bug 281250

This commit is contained in:
Vivian Kong 2009-06-23 19:51:19 +00:00
parent de93e043c2
commit b9b3230ecf

View file

@ -21,7 +21,7 @@ import org.eclipse.cdt.core.model.ICElementDelta;
import org.eclipse.cdt.core.model.IParent;
/**
* A C element delta biulder creates a C element delta on a C element between
* A C element delta builder creates a C element delta on a C element between
* the version of the C element at the time the comparator was created and the
* current version of the C element.
*
@ -392,4 +392,12 @@ private void trimDelta(CElementDelta delta) {
}
}
/**
* Get the change delta built by the builder.
* @return the change delta built by the builder.
*/
public CElementDelta getDelta() {
return delta;
}
}