Mark thread as interrupted after catching InterruptedException

Closes gh-11784
pull/11784/merge
igor-suhorukov 7 years ago committed by Andy Wilkinson
parent d1dc8cb72a
commit 0c30c969bf

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

Loading…
Cancel
Save