Skip to content

Commit

Permalink
form
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Potucek committed Feb 9, 2025
1 parent 8b8bd10 commit 30f6c9b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ public String getDisplayName() {

@Override
public String getDescription() {
return "Checks that any combination of String literals is on the left side of an `equals()` comparison. Also checks for String literals assigned to some field (such as `someString.equals(anotherString = \"text\"))`.";
return """
Checks that any combination of String literals is on the left side of an `equals()` comparison.
Also checks for String literals assigned to some field (such as `someString.equals(anotherString = "text"))`.
""";
}

@Override
Expand Down

0 comments on commit 30f6c9b

Please sign in to comment.