()
| 60 | */ |
| 61 | // Casting to any type is safe because the list will never hold any elements. |
| 62 | @SuppressWarnings("unchecked") |
| 63 | public static <E> ImmutableList<E> of() { |
| 64 | return (ImmutableList<E>) EMPTY; |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Returns an immutable list containing a single element. This list behaves |
no test coverage detected