Skip to content

Improve javac error output parsing - Fix #336 #337

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

Merged
merged 3 commits into from
Dec 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix typo in JavacCompiler::parseModernStream comment
  • Loading branch information
kriegaex committed Dec 17, 2023
commit 48ac162160bb77c9b325b4829ee7c40306bde12a
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ static List<CompilerMessage> parseModernStream(int exitCode, BufferedReader inpu

if (line == null) {
// javac output not detected by other parsing
// maybe better to ignore only the summary an mark the rest as error
// maybe better to ignore only the summary and mark the rest as error
String bufferAsString = buffer.toString();
if (buffer.length() > 0) {
if (bufferAsString.startsWith("javac:")) {
Expand Down