We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the project, there are several occurences of so called magic numbers like here: #53 (comment)
Also there are occurences of unclear REGEX usages like here: #53 (comment) and #53 (comment)
It is not OS save to use \n, so we have to change it to String.format("%n") and StringBuilder should be used in general
\n
String.format("%n")
StringBuilder
String
The text was updated successfully, but these errors were encountered:
wurstbroteater
tcerny
jeremiaheinle
Successfully merging a pull request may close this issue.
In the project, there are several occurences of so called magic numbers like here: #53 (comment)
Also there are occurences of unclear REGEX usages like here: #53 (comment) and #53 (comment)
It is not OS save to use
\n
, so we have to change it toString.format("%n")
andStringBuilder
should be used in generalThis issue is considered as done if:
\n
have been changed toString.format("%n")
String
is be replaced withStringBuilder
( this also includes String concatenation with +)The text was updated successfully, but these errors were encountered: