Cleanup: remove useless cast

This commit is contained in:
Mathis Chenuet
2015-01-23 17:18:17 +00:00
committed by Laurent Clouet
parent be687718c6
commit 93d34bc571

View File

@@ -358,7 +358,7 @@ public class Client {
while (true) {
Job job_to_send;
try {
job_to_send = (Job) jobsToValidate.take();
job_to_send = jobsToValidate.take();
this.log.debug("will validate " + job_to_send);
//gui.status("Sending frame");
ret = confirmJob(job_to_send);