Creates a mutable , empty ArrayList instance (for Java 6 and earlier). Note: if mutability is not required, use ImmutableList#of() instead. Note for Java 7 and later: this method is now unnecessary and should be treated as deprecated. Instead, use the {@co
()
| 85 | */ |
| 86 | |
| 87 | @GwtCompatible(serializable = true) |
| 88 | public static <E> ArrayList<E> newArrayList() { |
| 89 | return new ArrayList<E>(); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Creates a <i>mutable</i> {@code ArrayList} instance containing the given |
no test coverage detected