INT-3989: WatchService Scanner Fix Checkstyle

This commit is contained in:
Gary Russell
2016-04-22 14:26:01 -04:00
parent 06703c8368
commit b84747b090

View File

@@ -345,6 +345,7 @@ public class FileReadingMessageSource extends IntegrationObjectSupport implement
}
@Override
public Message<File> receive() throws MessagingException {
Message<File> message = null;
@@ -530,7 +531,7 @@ public class FileReadingMessageSource extends IntegrationObjectSupport implement
"] with context [" + event.context() + "]");
}
for (WatchKey watchKey : pathKeys.values()) {
for (WatchKey watchKey : this.pathKeys.values()) {
watchKey.cancel();
}
this.pathKeys.clear();