Skip to content

Commit b37271b

Browse files
authored
Change getLastWeek to static method
1 parent 596d751 commit b37271b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

exercises/concept/bird-watcher/src/main/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
throw new UnsupportedOperationException("Please implement the BirdWatcher.getLastWeek() method");
1111
}
1212

0 commit comments

Comments
 (0)