diff options
Diffstat (limited to 'source/com/c2kernel/lookup/RolePath.java')
| -rw-r--r--[-rwxr-xr-x] | source/com/c2kernel/lookup/RolePath.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/com/c2kernel/lookup/RolePath.java b/source/com/c2kernel/lookup/RolePath.java index df26eae..672bdbf 100755..100644 --- a/source/com/c2kernel/lookup/RolePath.java +++ b/source/com/c2kernel/lookup/RolePath.java @@ -63,7 +63,7 @@ public class RolePath extends DomainPath public Enumeration getChildren() {
AgentPath[] agents = getAgentsWithRole();
- Vector children = new Vector(agents.length);
+ Vector<AgentPath> children = new Vector<AgentPath>(agents.length);
for (int i = 0; i < agents.length; i++)
children.add(i, agents[i]);
return children.elements();
|
