1
0
mirror of synced 2025-12-08 22:28:16 +08:00

auto commit

This commit is contained in:
yitter
2022-07-12 13:48:50 +08:00
parent 0a12e49c84
commit 20cf99c7d4

View File

@@ -214,7 +214,11 @@ public class SnowWorkerM1 implements ISnowWorker {
long tempTimeTicker = GetCurrentTimeTick();
while (tempTimeTicker <= _LastTimeTick) {
Thread.sleep(1);
try {
Thread.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
tempTimeTicker = GetCurrentTimeTick();
}