not throwing an exception for interrupted

This commit is contained in:
rusefi 2024-01-31 17:13:05 -05:00
parent 9110914cee
commit 33ec189bee
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ public enum SerialPortScanner {
try {
Thread.sleep(300);
} catch (InterruptedException e) {
throw new IllegalStateException(e);
log.error("sleep interrupted", e);
}
}