Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ppouchin committed Sep 20, 2024
1 parent b1eb632 commit 0a7d031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/fr/igred/omero/repository/ImageWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ public BufferedImage getThumbnail(Client client, int size)
*/
public List<String> getOriginalPaths(Client client)
throws ExecutionException, AccessException, ServiceException {
String error = "Cannot get managed repositories paths for " + this;
String error = "Cannot get original paths for " + this;
return call(client.getMetadata(),
m -> m.getOriginalPaths(client.getCtx(), data),
error);
Expand Down

0 comments on commit 0a7d031

Please sign in to comment.