summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/persistency/XMLClusterStorage.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/persistency/XMLClusterStorage.java')
-rw-r--r--[-rwxr-xr-x]source/com/c2kernel/persistency/XMLClusterStorage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/com/c2kernel/persistency/XMLClusterStorage.java b/source/com/c2kernel/persistency/XMLClusterStorage.java
index 6e3cd72..24697af 100755..100644
--- a/source/com/c2kernel/persistency/XMLClusterStorage.java
+++ b/source/com/c2kernel/persistency/XMLClusterStorage.java
@@ -110,7 +110,7 @@ public class XMLClusterStorage extends ClusterStorage {
String filePath = getFilePath(sysKey, path);
ArrayList paths = FileStringUtility.listDir( filePath, true, false );
if (paths == null) return result; // dir doesn't exist yet
- ArrayList contents = new ArrayList();
+ ArrayList<String> contents = new ArrayList<String>();
String previous = null;
for (int i=0; i<paths.size(); i++) {
String next = (String)paths.get(i);