Attempt to fix failing build

pull/3096/merge
Phillip Webb 10 years ago
parent 9929e39124
commit c4dc381a21

@ -232,7 +232,9 @@ public class FileSystemWatcher {
Thread thread = this.watchThread;
if (thread != null) {
this.remainingScans.set(remainingScans);
thread.interrupt();
if (remainingScans <= 0) {
thread.interrupt();
}
if (Thread.currentThread() != thread) {
try {
thread.join();

Loading…
Cancel
Save