(Object o)
| 386 | } |
| 387 | |
| 388 | @Override |
| 389 | public boolean removeLastOccurrence(Object o) { |
| 390 | int lastIndex = lastIndexOf(o); |
| 391 | if (lastIndex > 0) { |
| 392 | remove(lastIndex); |
| 393 | |
| 394 | return true; |
| 395 | } else { |
| 396 | return false; |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | private static class Cell<T> { |
| 401 | public T value; |
nothing calls this directly
no test coverage detected