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