(final Deck unit)
| 68 | } |
| 69 | |
| 70 | @Override |
| 71 | public void erase(final Deck unit) { |
| 72 | this.makeFileFor(unit).delete(); |
| 73 | } |
| 74 | |
| 75 | public File makeFileFor(final Deck deck) { |
| 76 | return new File(this.directory, deck.getBestFileName() + FILE_EXTENSION); |
nothing calls this directly
no test coverage detected