summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/lookup/EntityPath.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/lookup/EntityPath.java')
-rw-r--r--[-rwxr-xr-x]source/com/c2kernel/lookup/EntityPath.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/com/c2kernel/lookup/EntityPath.java b/source/com/c2kernel/lookup/EntityPath.java
index 079f171..3a24228 100755..100644
--- a/source/com/c2kernel/lookup/EntityPath.java
+++ b/source/com/c2kernel/lookup/EntityPath.java
@@ -127,7 +127,7 @@ public class EntityPath extends Path
if (sysKey < 0 || sysKey > maxSysKey)
throw new InvalidEntityPathException("System key "+sysKey+" out of range");
String stringPath = Integer.toString(sysKey);
- ArrayList newKey = new ArrayList();
+ ArrayList<String> newKey = new ArrayList<String>();
for (int i=0; i<elementNo; i++) {
StringBuffer nextComponent = new StringBuffer("d");
int start = stringPath.length()-elementLen;