File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
runner/src/main/java/com/codingame/gameengine/runner Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -95,8 +95,6 @@ private void bootstrapPlayers() {
95
95
throw new RuntimeException ("Bootstrap of all players failed to bootsrap" );
96
96
}
97
97
98
- bootstrapPlayersWait ();
99
-
100
98
for (Agent agent : players ) {
101
99
BlockingQueue <String > queue = new ArrayBlockingQueue <>(1024 );
102
100
AsynchronousWriter asyncWriter = new AsynchronousWriter (queue , agent .getInputStream ());
@@ -106,14 +104,6 @@ private void bootstrapPlayers() {
106
104
}
107
105
}
108
106
109
- private void bootstrapPlayersWait () {
110
- try {
111
- // Arbitrary time to wait for bootstrap
112
- Thread .sleep (300 );
113
- } catch (InterruptedException e ) {
114
- }
115
- }
116
-
117
107
private void runAgents () {
118
108
referee .execute ();
119
109
You can’t perform that action at this time.
0 commit comments