Skip to content

Commit

Permalink
Remove a deprecated constructor
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 209666300
  • Loading branch information
cushon authored and Copybara-Service committed Aug 21, 2018
1 parent c5a2f81 commit 398478c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ public void init(Context context, Log log, JavaCompiler compiler) {
if (epOptions == null) {
epOptions = ErrorProneOptions.empty();
}
errorProneAnalyzer = new ErrorProneAnalyzer(scannerSupplier, epOptions, context);
errorProneAnalyzer =
ErrorProneAnalyzer.createByScanningForPlugins(scannerSupplier, epOptions, context);
}

/** Run Error Prone analysis after performing dataflow checks. */
Expand Down

0 comments on commit 398478c

Please sign in to comment.