G
Gary Newell
I need to make a shallow copy of an ArrayList. Java 5 doesn't like my 1.4
coding method:
newItem.list = (ArrayList)oldItem.list.clone();
How do I perform a shallow copy of an ArrayList in Java 5?
Thanks!
Gary
coding method:
newItem.list = (ArrayList)oldItem.list.clone();
How do I perform a shallow copy of an ArrayList in Java 5?
Thanks!
Gary