Skip to content

Commit

Permalink
[groovy#282] fix unwrapping of this.parallelParsing
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarwell committed Oct 18, 2023
1 parent be20b07 commit 24e98ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ private void doCompileProcess(Set<File> sources, List<?> classpath, File compile
getLog().warn("Option 'tolerance' is requested but not supported yet with fork=true.");
}

if (this.parallelParsing) {
if (this.parallelParsing != null) {
getLog().warn("Option 'parallelParsing' is requested but not supported yet with fork=true.");
}

Expand Down

0 comments on commit 24e98ff

Please sign in to comment.