summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/entity/agent/JobArrayList.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/entity/agent/JobArrayList.java')
-rw-r--r--[-rwxr-xr-x]source/com/c2kernel/entity/agent/JobArrayList.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/com/c2kernel/entity/agent/JobArrayList.java b/source/com/c2kernel/entity/agent/JobArrayList.java
index b6eb2c2..fa85368 100755..100644
--- a/source/com/c2kernel/entity/agent/JobArrayList.java
+++ b/source/com/c2kernel/entity/agent/JobArrayList.java
@@ -13,7 +13,7 @@ import java.util.ArrayList;
import com.c2kernel.utils.CastorArrayList;
-public class JobArrayList extends CastorArrayList
+public class JobArrayList extends CastorArrayList<Job>
{
public JobArrayList()
@@ -21,7 +21,7 @@ public class JobArrayList extends CastorArrayList
super();
}
- public JobArrayList(ArrayList aList)
+ public JobArrayList(ArrayList<Job> aList)
{
super(aList);
}