Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
* </p>
*
* <p>
* This check was extended to include all equality checks like "&gt;", "&gt;=", "&lt;", "&lt;="
* This check was extended to include all equality checks like {@literal >},
* {@literal >=}, {@literal <}, {@literal <=}
* for users who prefer constants always be on the right-hand side for any condition.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
* methods and instanceof in '&amp;&amp;' and '||' conditions.
* </p>
* <p>
* For example: if(getProperty() &amp;&amp; property) ==&gt; if(property &amp;&amp; getProperty()),
* For example:
* {@code if(getProperty() && property) ==> if(property && getProperty())}
* and similarly for any expression.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class MultipleStringLiteralsExtendedCheck extends AbstractCheck {
public static final String MSG_KEY = "multiple.string.literal";

/**
* The found strings and their positions. &lt;String, ArrayList&gt;, with
* The found strings and their positions. {@code <String,ArrayList>}, with
* the ArrayList containing StringInfo objects.
*/
private final Map<String, List<DetailAST>> stringMap = new HashMap<>();
Expand Down
Loading