(Object[] initial, Object additional)
| 220 | } |
| 221 | |
| 222 | private static Object[] append(Object[] initial, Object additional) { |
| 223 | Object[] newArray = Arrays.copyOf(initial, initial.length + 1); |
| 224 | newArray[initial.length] = additional; |
| 225 | return newArray; |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * Returns all methods defind in {@code componentType} which are not inherited from a supertype. |
no outgoing calls