From 8f4dfd55533adf1bd1ce8d070ccf17061bf53d5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Besson?= Date: Thu, 9 May 2024 09:13:26 +0100 Subject: [PATCH] Convert ZarrPixelsService.asPath into a public static method --- .../java/com/glencoesoftware/omero/zarr/ZarrPixelsService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/glencoesoftware/omero/zarr/ZarrPixelsService.java b/src/main/java/com/glencoesoftware/omero/zarr/ZarrPixelsService.java index 910d71e..f51d046 100644 --- a/src/main/java/com/glencoesoftware/omero/zarr/ZarrPixelsService.java +++ b/src/main/java/com/glencoesoftware/omero/zarr/ZarrPixelsService.java @@ -140,7 +140,7 @@ public static ZarrArray getZarrArray(Path path) throws IOException { * directory has not been specified in configuration. * @throws IOException */ - private Path asPath(String ngffDir) throws IOException { + public static Path asPath(String ngffDir) throws IOException { if (ngffDir.isEmpty()) { return null; }