Skip to content

Commit

Permalink
Promote a tool name for the JavaCompiler
Browse files Browse the repository at this point in the history
Currently there is no name for the ECJ Implementation of JavaCompiler.
This sets the name so it is possible to identify the JavaCompiler as
ECJ.
  • Loading branch information
laeubi committed Jul 23, 2024
1 parent 8e630b6 commit 6f15593
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -248,4 +248,9 @@ public int run(InputStream in, OutputStream out, OutputStream err, String... arg
null/* progress */).compile(arguments);
return succeed ? 0 : -1;
}

@Override
public String name() {
return "ecj"; //$NON-NLS-1$
}
}

0 comments on commit 6f15593

Please sign in to comment.