}
}
private int readJudgeReply() throws IOException {
int reply = this.in.readInt();
JudgeReply r = JudgeReply.findById(reply);
if (r == null) {
this.logger.error("Invalid judge reply " + reply);
} else if (r != JudgeReply.RUNNING) {
this.logger.info(r.getDescription());
}
return reply;
}