From f2c105e406b43e1707b38232246e1cff849f2203 Mon Sep 17 00:00:00 2001 From: brinn <brinn> Date: Thu, 10 Feb 2011 00:12:27 +0000 Subject: [PATCH] minor: fix raw type warning SVN: 19854 --- .../systemsx/cisd/common/concurrent/ParallelizedExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e60c177be2e..59eabbe5b9a 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())); -- GitLab