Closed pcdavid closed 3 months ago
The recent changes in question are:
EditPartView.getEditPartRegistry()
Map
Map<Object, EditPart>
protected
createRulerEditPart
createEditPart()
Locally these changes compile both with the 2023-03 and canary target platforms.
The recent changes in question are:
EditPartView.getEditPartRegistry()
from a plain/untypedMap
into aMap<Object, EditPart>
. The adaptation is trivial.protected
method we used to override (createRulerEditPart
). To get a version which works with both old and new GEF versions, we now override the wholecreateEditPart()
method instead. Hopefully its definition in GEF will not change in ways that would require us to update our own version in the future (we might not see it).Locally these changes compile both with the 2023-03 and canary target platforms.