Skip to content

Commit

Permalink
feat(Fish): add getter for constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
oscar-schwarz committed Jun 17, 2024
1 parent 040b70f commit 41c43d8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/fish_variety/FishCollection.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ public class FishCollection {
private ArrayList<Fish> fishes = new ArrayList<Fish>();
private FishConstraints constraints;

public FishConstraints getConstraints() {
return constraints;
}

private Fish latest;

public FishCollection(FishConstraints constraints, ArrayList<Fish> fishes) {
Expand Down

0 comments on commit 41c43d8

Please sign in to comment.