Skip to content
Open
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 @@ -40,6 +40,8 @@ public AsciiCasemap() {
* @see org.apache.jsieve.comparators.Equals#equals(String, String)
*/
public boolean equals(String string1, String string2) {
if (string1 == null && string2 == null) return true;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You have an indentation problem, this if is not at the same level than the other one.

We also tend to always use a block after a if.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you think it would be possible to you to propose tests for this changeset?

Maybe we can write a AsciiCasemapTest class, and test :

  • null, null
  • "a", null
  • null, "a"
  • "a", "b"
  • "a", "a"
  • "a", "A"

if (string1 == null || string2 == null) return false;
return ComparatorUtils.equals(string1.toUpperCase(), string2
.toUpperCase());
}
Expand Down