Fix silly typo in variable name...

This commit is contained in:
Ryan Ernst 2015-12-18 13:16:37 -08:00
parent 4700cb9409
commit d0a10b337e
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public class AntTask extends DefaultTask {
// remove existing loggers, we add our own
List<BuildLogger> toRemove = new ArrayList<>();
for (BuildListener listener : ant.project.getBuildListeners()) {
if (l instanceof BuildLogger) {
if (listener instanceof BuildLogger) {
toRemove.add(listener);
}
}