if (geoms == null)
return Collections.<Coordinate> emptyList();
for( EditGeom geom : geoms ) {
for( PrimitiveShape part : geom ) {
Mutator mutator = part.getMutator();
if (mutator.remove(p))
changed.add(part);
while( mutator.remove(p) );
}
}
if (EditPlugin.isDebugging(EditPlugin.RUN_ASSERTIONS)) {
for( PrimitiveShape shape : changed ) {