Mark thread as interrupted after catching InterruptedException

Closes gh-11784
This commit is contained in:
igor-suhorukov
2018-01-26 00:43:23 +03:00
committed by Andy Wilkinson
parent d1dc8cb72a
commit 0c30c969bf

View File

@@ -253,6 +253,7 @@ public class ImageBanner implements Banner {
Thread.sleep(delay);
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
}
}