Skip to content
Snippets Groups Projects
Commit e6fe0271 authored by Joy Clark's avatar Joy Clark
Browse files

Cast T to Node before cloning

parent 9a4062a6
Branches
Tags
No related merge requests found
......@@ -315,7 +315,7 @@ public abstract class Node extends PositionedNode implements Switchable, Cloneab
for(T n : list)
{
clone.add(cloneNode(n));
clone.add((Node) cloneNode(n));
}
return clone;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment