()
| 1425 | } |
| 1426 | |
| 1427 | public void run() |
| 1428 | { |
| 1429 | while(this.gameState != Constants.NONE) |
| 1430 | { |
| 1431 | if(this.gameState == Constants.GAME) |
| 1432 | { |
| 1433 | this.updateDrawingStuff(); |
| 1434 | } |
| 1435 | |
| 1436 | try |
| 1437 | { |
| 1438 | Thread.sleep(2000); |
| 1439 | } |
| 1440 | catch (InterruptedException e) |
| 1441 | { |
| 1442 | e.printStackTrace(); |
| 1443 | } |
| 1444 | } |
| 1445 | } |
| 1446 | |
| 1447 | } |
| 1448 |
nothing calls this directly
no test coverage detected