| 3 | import com.beust.jcommander.FuzzyMap.IKey; |
| 4 | |
| 5 | public record StringKey(String name) implements IKey { |
| 6 | |
| 7 | @Override |
| 8 | public String getName() { |
| 9 | return name; |
| 10 | } |
| 11 | |
| 12 | @Override |
| 13 | public String toString() { |
| 14 | return name; |
| 15 | } |
| 16 | |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…