Skip to content

Commit

Permalink
Remove extra-check for staleSources is non-null
Browse files Browse the repository at this point in the history
  • Loading branch information
pzygielo authored and eolivelli committed May 23, 2020
1 parent 1dc146a commit 9dc9044
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1344,7 +1344,7 @@ private boolean isSourceChanged( CompilerConfiguration compilerConfiguration, Co
getLog().debug( "Stale source detected: " + f.getAbsolutePath() );
}
}
return staleSources != null && !staleSources.isEmpty();
return !staleSources.isEmpty();
}


Expand Down

0 comments on commit 9dc9044

Please sign in to comment.