Skip to content

Commit

Permalink
Add ViewId.toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Sep 26, 2024
1 parent 92d3c9a commit bf79dc7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/java/mpicbg/spim/data/sequence/ViewId.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,13 @@ public int hashCode()
// some non-colliding hash assuming we have not more that 100000 viewsetups
return getViewSetupId() + getTimePointId() * 100000;
}

@Override
public String toString()
{
return "ViewId{" +
"timepoint=" + timepoint +
", setup=" + setup +
'}';
}
}

0 comments on commit bf79dc7

Please sign in to comment.