Skip to content

Commit

Permalink
remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
chengenzhao committed Oct 20, 2017
1 parent 174dda9 commit 9b7cfa6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/com/whitewoodcity/controller/TabContent.java
Original file line number Diff line number Diff line change
Expand Up @@ -571,16 +571,12 @@ private void handleCustomerCode(String accessCode, Handler handler) {
thread.setDaemon(true);
thread.start();
vertx.setTimer(Long.getLong(DEFAULT_TOLERATED_WORKER_EXECUTE_TIME), id -> {
System.out.println(2);
if (thread.isAlive()) {
System.out.println(1);
thread.interrupt();
}
});
vertx.setTimer(Long.getLong(DEFAULT_MAX_WORKER_EXECUTE_TIME), id -> {
System.out.println(2);
if (thread.isAlive()) {
System.out.println(3);
thread.stop();
}
});
Expand Down

0 comments on commit 9b7cfa6

Please # to comment.