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--source/com/c2kernel/property/PropertyArrayList.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/source/com/c2kernel/property/PropertyArrayList.java b/source/com/c2kernel/property/PropertyArrayList.java
deleted file mode 100644
index f59b2d5..0000000
--- a/source/com/c2kernel/property/PropertyArrayList.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/**************************************************************************
- *
- * $Revision: 1.2 $
- * $Date: 2003/06/20 11:44:30 $
- *
- * Copyright (C) 2001 CERN - European Organization for Nuclear Research
- * All rights reserved.
- **************************************************************************/
-
-package com.c2kernel.property;
-
-import java.util.ArrayList;
-
-import com.c2kernel.utils.CastorArrayList;
-
-public class PropertyArrayList extends CastorArrayList<Property>
-{
- public PropertyArrayList()
- {
- super();
- }
-
- public PropertyArrayList(ArrayList<Property> aList)
- {
- super(aList);
- }
-
-
-}