Skip to content

Commit

Permalink
Simplify querying the current line separator
Browse files Browse the repository at this point in the history
  • Loading branch information
liblit committed Sep 23, 2024
1 parent a0e60f0 commit d843bb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public String toString() {
return "";
}

final String ls = System.getProperty("line.separator");
final String ls = System.lineSeparator();

return statesOfSsaVars + ls + valuesOfSsaVars + ls + numbersOfSsaVarsThatAreParemerters;
}
Expand Down

0 comments on commit d843bb8

Please sign in to comment.