return;
}
Point2D zero = new Point(20, 0);
while (overlapping.length > 0) {
Point2D last = (Point2D) zero.clone();
for (Object element : overlapping) {
if (element instanceof JmtCell && element != cell && inGroup) {
Rectangle2D b2 = GraphConstants.getBounds(((JmtCell) element).getAttributes());
if (b2.intersects(bounds)) {
if (b2.getMaxX() > last.getX()) {