()
| 49 | } |
| 50 | |
| 51 | @Override |
| 52 | public void close() { |
| 53 | if (!shutdown.compareAndSet(false, true)) { |
| 54 | throw new ConcurrentModificationException( |
| 55 | "Unexpected: StatefulFilter#close called multiple times"); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | @Nullable |
| 60 | @Override |
nothing calls this directly
no outgoing calls
no test coverage detected