Skip to content

Commit

Permalink
Escape Windows output
Browse files Browse the repository at this point in the history
  • Loading branch information
ledoyen committed Sep 30, 2024
1 parent 1bfa5ea commit b62309c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static String safeLowerTrim(String s) {
if (s == null) {
return "";
} else {
return s.trim().toLowerCase();
return s.trim().replaceAll("\r", "").toLowerCase();
}
}
}

0 comments on commit b62309c

Please sign in to comment.