(Set set)
| 90 | } |
| 91 | |
| 92 | private static Set deepCopySet(Set set) { |
| 93 | Set copy = new HashSet(set.size()); |
| 94 | for (Object o : set) { |
| 95 | copy.add(deepCopyObject(o)); |
| 96 | } |
| 97 | return copy; |
| 98 | } |
| 99 | |
| 100 | private static List deepCopyList(List list) { |
| 101 | List copy = new ArrayList(list.size()); |
no test coverage detected