Skip to content
Snippets Groups Projects
Commit 7a101768 authored by tpylak's avatar tpylak
Browse files

minor: fix screening integration tests (bug in toString)

SVN: 19865
parent 3f5acbc0
No related branches found
No related tags found
No related merge requests found
......@@ -37,8 +37,8 @@ public class ImageDatasetMetadata implements Serializable
private final int thumbnailHeight;
public ImageDatasetMetadata(IImageDatasetIdentifier dataset, List<String> channelCodes,
List<String> channelLabels, int tilesRows, int tilesCols, int width,
int height, int thumbnailWidth, int thumbnailHeight)
List<String> channelLabels, int tilesRows, int tilesCols, int width, int height,
int thumbnailWidth, int thumbnailHeight)
{
this.imageDataset = dataset;
this.channelNames = channelCodes;
......@@ -182,15 +182,11 @@ public class ImageDatasetMetadata implements Serializable
@Override
public String toString()
{
if (hasThumbnails())
{
return "Dataset " + imageDataset + " has [" + getChannelCodes() + "] channels, "
+ tilesNumber + " tiles. Image resolution: " + width + "x" + height;
} else
{
return "Dataset " + imageDataset + " has [" + getChannelCodes() + "] channels, "
+ tilesNumber + " tiles. Image resolution: " + width + "x" + height
+ ". Thumbnail resolution: " + thumbnailWidth + "x" + thumbnailHeight + ".";
}
String thumbnailsDesc =
hasThumbnails() ? ". Thumbnail resolution: " + thumbnailWidth + "x"
+ thumbnailHeight + "." : "";
return "Dataset " + imageDataset + " has [" + getChannelCodes() + "] channels, "
+ tilesNumber + " tiles. Image resolution: " + width + "x" + height
+ thumbnailsDesc;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment