Skip to content

Commit

Permalink
JZarrServiceImpl: Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
dgault committed May 15, 2024
1 parent 9a9bd34 commit ea4ce08
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/loci/formats/services/JZarrServiceImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,6 @@ public Map<String, Object> getGroupAttr(String path) throws IOException, FormatE
}

public Map<String, Object> getArrayAttr(String path) throws IOException, FormatException {
ZarrArray array = null;
if (s3fs == null) {
array = ZarrArray.open(path);
}
else {
s3fs.updateRoot(getZarrRoot(s3fs.getRoot()) + stripZarrRoot(path));
array = ZarrArray.open(s3fs);
}
return getArray(path).getAttributes();
}

Expand Down

0 comments on commit ea4ce08

Please sign in to comment.