diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2012-05-30 08:37:45 +0200 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2012-05-30 08:37:45 +0200 |
| commit | b086f57f56bf0eb9dab9cf321a0f69aaaae84347 (patch) | |
| tree | 8e6e26e8b7eed6abad7a17b093bdbb55c5e6b1ba /source/com/c2kernel/utils/CastorArrayList.java | |
| parent | 22088ae8d2d5ff390518dbe1c4372325ffb3a647 (diff) | |
Initial Maven Conversion
Diffstat (limited to 'source/com/c2kernel/utils/CastorArrayList.java')
| -rw-r--r-- | source/com/c2kernel/utils/CastorArrayList.java | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/source/com/c2kernel/utils/CastorArrayList.java b/source/com/c2kernel/utils/CastorArrayList.java deleted file mode 100644 index ea9a090..0000000 --- a/source/com/c2kernel/utils/CastorArrayList.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.c2kernel.utils;
-
-import java.io.Serializable;
-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
- * to stop it crashing.
- *
- * $Revision: 1.4 $
- * $Date: 2004/01/22 11:17:42 $
- *
- * Copyright (C) 2003 CERN - European Organization for Nuclear Research
- * All rights reserved.
- **************************************************************************/
-//
-abstract public class CastorArrayList<T> implements Serializable {
- public ArrayList<T> list;
-
- public CastorArrayList() {
- super();
- list = new ArrayList<T>();
- }
-
- public CastorArrayList(ArrayList<T> list) {
- this();
- this.list = list;
- }
-}
|
