Commit cb8585ba authored by yanzg's avatar yanzg

身份证识别

parent 05fb8d99
...@@ -58,12 +58,7 @@ public class QueueServiceImpl implements QueueService { ...@@ -58,12 +58,7 @@ public class QueueServiceImpl implements QueueService {
} }
synchronized (this) { synchronized (this) {
isAsyncRun = true; isAsyncRun = true;
Thread thread = new Thread(new Runnable() { Thread thread = new Thread(this::handleQueue);
@Override
public void run() {
}
});
thread.setDaemon(true); thread.setDaemon(true);
thread.start(); thread.start();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment