Skip to content

Commit

Permalink
added Lulu to Chickens
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanSST committed Mar 12, 2024
1 parent 641002a commit f25a605
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/ch/stephan/chickenfarm/dto/Chicken.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
public record Chicken(String name, int weight) {
public static final Chicken HEIDI = new Chicken("Heidi", 2200);
public static final Chicken KLARA = new Chicken("Klara", 2850);
public static final Chicken LILI = new Chicken("Lili", 2900);
public static final Chicken LILI = new Chicken("Lili", 2851);
public static final Chicken LULU = new Chicken("Lulu", 3450);
}

0 comments on commit f25a605

Please sign in to comment.