(File file, OpenOption open, Comparator<K> comp)
| 152 | }; |
| 153 | |
| 154 | public ChiseledMap(File file, OpenOption open, Comparator<K> comp) throws IOException { |
| 155 | this(file, open, comp, null, null); |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * Constructor. Create a TinyKVMap. |
nothing calls this directly
no test coverage detected