Skip to content

Commit a90db72

Browse files
committed
fix: KVA.createReadData is now abstract
1 parent 493276e commit a90db72

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/main/java/org/janelia/saalfeldlab/n5/KeyValueAccess.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,7 @@ default URI uri(final String uriString) throws URISyntaxException {
276276
* @return a materialized Read data
277277
* @throws N5IOException if an error occurs
278278
*/
279-
default ReadData createReadData(final String normalPath) throws N5IOException {
280-
return ReadData.from(this, normalPath);
281-
}
279+
abstract ReadData createReadData(final String normalPath) throws N5IOException;
282280

283281
/**
284282
* Create a lock on a path for reading. This isn't meant to be kept

0 commit comments

Comments
 (0)