Browse Source

auto commit

tags/v1.3.1
yitter 2 years ago
parent
commit
20cf99c7d4
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      Java/source/src/main/java/com/github/yitter/core/SnowWorkerM1.java

+ 5
- 1
Java/source/src/main/java/com/github/yitter/core/SnowWorkerM1.java 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();
}


Loading…
Cancel
Save