Skip to content

Commit

Permalink
removed empty statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mtygesen committed Nov 6, 2023
1 parent edebd97 commit 1a45965
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ public Integer getVariableIndex(String name) {
}

public boolean doesSimilarRangeExist(ColorType newColorType) {
for (ColorType ct : colorTypes) {;
for (ColorType ct : colorTypes) {
if (ct.getColors().toString().equals(newColorType.getColors().toString()) && !ct.equals(newColorType)) {
return true;
}
Expand Down

0 comments on commit 1a45965

Please sign in to comment.