summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/utils/CastorArrayList.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/utils/CastorArrayList.java')
-rw-r--r--source/com/c2kernel/utils/CastorArrayList.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/com/c2kernel/utils/CastorArrayList.java b/source/com/c2kernel/utils/CastorArrayList.java
index 7596dd9..ed15c0f 100644
--- a/source/com/c2kernel/utils/CastorArrayList.java
+++ b/source/com/c2kernel/utils/CastorArrayList.java
@@ -5,7 +5,7 @@ import java.util.ArrayList;
/**************************************************************************
* Wrapper for a root element to an ArrayList. Castor Marshalls arraylists
- * as multiple elements, so this class is needed to provide a root element
+ * as multiple elements, so this class is needed to provide a root element
* to stop it crashing.
*
* $Revision: 1.4 $
@@ -17,12 +17,12 @@ import java.util.ArrayList;
//
abstract public class CastorArrayList<T> implements Serializable{
public ArrayList<T> list;
-
+
public CastorArrayList() {
super();
- list = new ArrayList<T>();
+ list = new ArrayList<T>();
}
-
+
public CastorArrayList(ArrayList<T> list) {
this();
this.list = list;