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
'?'+variable+'?'
isn't supported by additional hints
The text was updated successfully, but these errors were encountered:
The wrong ones:
// String v1 = name + " (" + x + ", " + y + ')'; String v1 = MessageFormat.format("{0} ({1}, {2}{3}", name, x, y, ')'); // String v2 = name + " (" + x + ", " + y + ')'; String v2 = String.format("%s (%s, %s%s", name, x, y, ')'); // String v3 = name + " (" + x + ", " + y + ')'; String v3 = new StringBuilder().append(name).append(" (").append(x).append(", ").append(y).append(')').toString();
Sorry, something went wrong.
issue #2: Single char literals are not supported for replacePlusWithX…
34c3242
…XX hints
markiewb
No branches or pull requests
isn't supported by additional hints
The text was updated successfully, but these errors were encountered: