From 40c0f98f0159ec02f461e3600c977747b2826041 Mon Sep 17 00:00:00 2001 From: Olivia Date: Sat, 12 Oct 2024 15:31:44 -0500 Subject: [PATCH] remove eliminated DS teams --- src/main/java/pw/chew/mlb/util/MLBAPIUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/pw/chew/mlb/util/MLBAPIUtil.java b/src/main/java/pw/chew/mlb/util/MLBAPIUtil.java index aac02bf..adca92c 100644 --- a/src/main/java/pw/chew/mlb/util/MLBAPIUtil.java +++ b/src/main/java/pw/chew/mlb/util/MLBAPIUtil.java @@ -146,7 +146,7 @@ public List asChoices() { public List asPostSeasonChoices() { // we only want people in the post-season. These teams are: 147, 110, 114, 118, 116, 117, 143, 121, 158, 119, 135, 109, 144 - List postSeason = Arrays.asList(147, 114, 118, 116, 143, 121, 158, 119, 135); + List postSeason = Arrays.asList(147, 114, 121, 119); List choices = new ArrayList<>(); for (int i = 0; i < raw.length(); i++) {