diff --git a/common/source/java/ch/systemsx/cisd/common/concurrent/ParallelizedExecutor.java b/common/source/java/ch/systemsx/cisd/common/concurrent/ParallelizedExecutor.java index e60c177be2e8b14d44b456e31d421b704cd1a893..59eabbe5b9a6858f591bbb00e8be3f8c01d81dfd 100644 --- a/common/source/java/ch/systemsx/cisd/common/concurrent/ParallelizedExecutor.java +++ b/common/source/java/ch/systemsx/cisd/common/concurrent/ParallelizedExecutor.java @@ -136,7 +136,7 @@ public class ParallelizedExecutor { final StringBuilder errorMsgBuilder = new StringBuilder(); errorMsgBuilder.append("The following items could not be successfully processed:\n"); - for (FailureRecord r : failureRecords) + for (FailureRecord<T> r : failureRecords) { errorMsgBuilder.append(String.format("%s (%s)\n", r.getFailedItem().toString(), r .getFailureStatus().tryGetErrorMessage()));