(E... aArray)
| 1352 | } |
| 1353 | |
| 1354 | @SafeVarargs |
| 1355 | public static <E> ArrayList<E> getWithoutNulls(E... aArray) { |
| 1356 | if (aArray == null) return new ArrayListNoNulls<>(); |
| 1357 | ArrayList<E> rList = new ArrayListNoNulls<>(Arrays.asList(aArray)); |
| 1358 | return rList; |
| 1359 | } |
| 1360 | |
| 1361 | @SafeVarargs |
| 1362 | public static <E> ArrayList<E> getWithoutTrailingNulls(E... aArray) { |
no outgoing calls
no test coverage detected