Skip to content

Commit

Permalink
Issue 253: Nested execution
Browse files Browse the repository at this point in the history
- Remove attempt to fix computation of coordinates in the
LifelineBodyFigure (currently, same code as overridden method)

Change-Id: I903b3c23925f5f74298119861beaa4ba6e729a2e
Signed-off-by: Remi Schnekenburger <rschnekenburger@eclipsesource.com>
  • Loading branch information
rschnekenbu committed Nov 7, 2018
1 parent 348a8d6 commit e65b707
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,15 +137,4 @@ public void setDefaultAnchorDistance(int distance) {
this.defaultAnchorDistance = distance;
}

@SuppressWarnings("deprecation")
@Override
public Rectangle getClientArea(Rectangle rect) {
rect.setBounds(getBounds());
rect.crop(getInsets());
if (useLocalCoordinates()) {
rect.setLocation(0, 0);
}
return rect;
}

}

0 comments on commit e65b707

Please sign in to comment.