Skip to content

Commit

Permalink
add missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
jburel committed Nov 14, 2023
1 parent 40566b9 commit 2446e03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ else if (IOConstants.ATTRIBUTE_DATATYPE_RECTANGLE2D.equals(dataType)
return new Ellipse2D.Double();
}
if (IOConstants.ATTRIBUTE_DATATYPE_RECTANGLE2D.equals(dataType))
new Rectangle2D.Double(
return new Rectangle2D.Double(
new Double(xValue), new Double(yValue), new Double(widthValue),
new Double(heightValue));
if (IOConstants.ATTRIBUTE_DATATYPE_ELLIPSE2D.equals(dataType))
Expand Down

0 comments on commit 2446e03

Please sign in to comment.