update 优化代码

没必要的reture
This commit is contained in:
cxh 2024-05-28 14:21:34 +08:00
parent 0e84332af9
commit 7f53b11570

View File

@ -21,8 +21,7 @@ public class Threads {
public static void sleep(long milliseconds) {
try {
Thread.sleep(milliseconds);
} catch (InterruptedException e) {
return;
} catch (InterruptedException ignore) {
}
}