New issue
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
8269753: Misplaced caret in PatternSyntaxException's detail message #4906
Conversation
|
Webrevs
|
@@ -107,7 +107,9 @@ public String getMessage() { | |||
sb.append(pattern); | |||
if (index >= 0 && pattern != null && index < pattern.length()) { | |||
sb.append(System.lineSeparator()); | |||
for (int i = 0; i < index; i++) sb.append(' '); | |||
for (int i = 0; i < index; i++) { | |||
sb.append((pattern.charAt(i) == '\t') ? '\t' : ' '); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In contrast with https://github.com/igraves/jdk/blob/2609dd9618dd43ea0de9abe3e3100262d09c079c/src/jdk.compiler/share/classes/com/sun/tools/javac/util/AbstractDiagnosticFormatter.java#L324, this code uses StringBuilder.append(char)
, which might be even cleaner; good.
@igraves This change now passes all automated pre-integration checks. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 46 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details.
|
/integrate |
Going to push as commit bb508e1.
Your commit was automatically rebased without conflicts. |
Fixes a bug where carets aren't indented correctly in PatternSyntaxException messages because tab characters are converted to spaces in their indentation.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/4906/head:pull/4906
$ git checkout pull/4906
Update a local copy of the PR:
$ git checkout pull/4906
$ git pull https://git.openjdk.java.net/jdk pull/4906/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 4906
View PR using the GUI difftool:
$ git pr show -t 4906
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/4906.diff