Skip to content

Commit

Permalink
Remove System.out.println(path + does not exist.) when .zarray are no…
Browse files Browse the repository at this point in the history
…t present
  • Loading branch information
tischi committed Nov 24, 2023
1 parent a32588f commit 413a90f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public ZArrayAttributes getZArrayAttributes(final String pathName) throws IOExce
zArrayAttributes = gson.fromJson(reader, OmeZArrayAttributes.class);
}
} else {
System.out.println(path + " does not exist.");
//System.out.println(path + " does not exist.");
}
this.dimensionSeparator = zArrayAttributes == null || zArrayAttributes.getDimensionSeparator() == null ?
DEFAULT_SEPARATOR : zArrayAttributes.getDimensionSeparator();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public ZArrayAttributes getZArrayAttributes(final String pathName) throws IOExce
HashMap<String, JsonElement> attributes = readJson(path);

if (attributes == null) {
System.out.println(path + " does not exist.");
//System.out.println(path + " does not exist.");
attributes = new HashMap<>();
}

Expand Down

0 comments on commit 413a90f

Please sign in to comment.