(Variable v)
| 70 | } |
| 71 | |
| 72 | @Override |
| 73 | public Future<Boolean> expunge(Variable v) { |
| 74 | InMemoryVariable variable = (InMemoryVariable) v; |
| 75 | |
| 76 | return futureFrom(entries.remove(variable.entry.name, variable.entry)); |
| 77 | } |
| 78 | |
| 79 | @Override |
| 80 | public Future<Iterator<String>> names() { |
nothing calls this directly
no test coverage detected