Skip to content

Commit 17088b2

Browse files
authored
Change getLastWeek to static method
1 parent b37271b commit 17088b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

exercises/concept/bird-watcher/.meta/src/reference/java/BirdWatcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public BirdWatcher(int[] birdsPerDay) {
66
this.birdsPerDay = birdsPerDay.clone();
77
}
88

9-
public int[] getLastWeek() {
9+
public static int[] getLastWeek() {
1010
return new int[] { 0, 2, 5, 3, 7, 8, 4 };
1111
}
1212

0 commit comments

Comments
 (0)