Skip to content

Commit

Permalink
[prmr#538] Change variable order declaration.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkcoding7 committed May 27, 2024
1 parent 7456060 commit 6f74ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jetuml/rendering/RenderingUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ public final class RenderingUtils
public static final Color DARK_MODE_FILL_COLOR = Color.web("#1C1C1F");
public static final DropShadow LIGHT_MODE_DROPSHADOW = new DropShadow(3, 3, 3, Color.LIGHTGRAY);
public static final DropShadow DARK_MODE_DROPSHADOW = new DropShadow(3, 3, 3, Color.web("#2f2f34"));
private static final int ARC_SIZE = 20;
private static Color aFill = WHITE;
private static Color aStroke = BLACK;
private static DropShadow aShadow = LIGHT_MODE_DROPSHADOW;
private static final int ARC_SIZE = 20;

private RenderingUtils()
{}
Expand Down

0 comments on commit 6f74ddc

Please sign in to comment.