Skip to content

Commit

Permalink
Some cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikl committed Jul 5, 2018
1 parent e109309 commit a0f1bd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions components/blitz/src/omero/gateway/model/ROIData.java
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,7 @@ public void removeShapeData(ShapeData shape)
if (roi == null)
throw new IllegalArgumentException("No Roi specified.");
ROICoordinate coord = shape.getROICoordinate();
List<ShapeData> shapeList;
shapeList = roiShapes.get(coord);
List<ShapeData> shapeList = roiShapes.get(coord);
if (shapeList != null) {
shapeList.remove(shape);
roi.removeShape((Shape) shape.asIObject());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public void testLoadROIs() throws DSOutOfServiceException,

compare(myRois, rois);
}

@Test
public void testGetROIFolders() throws DSOutOfServiceException,
DSAccessException {
Expand Down

0 comments on commit a0f1bd0

Please sign in to comment.