(INode[] array, int i, INode a)
| 1172 | */ |
| 1173 | |
| 1174 | private static INode[] cloneAndSet(INode[] array, int i, INode a) { |
| 1175 | INode[] clone = array.clone(); |
| 1176 | clone[i] = a; |
| 1177 | return clone; |
| 1178 | } |
| 1179 | |
| 1180 | private static Object[] cloneAndSet(Object[] array, int i, Object a) { |
| 1181 | Object[] clone = array.clone(); |