From a5022b9f78aee449581c0b10bf328012ce60fc1b Mon Sep 17 00:00:00 2001 From: Jeffrey Hope Date: Tue, 7 Nov 2023 19:07:52 -0600 Subject: [PATCH] Remove redundant abstract method --- .../freecasino/games/model/table/poker/DrawPoker.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/com/github/strangercoug/freecasino/games/model/table/poker/DrawPoker.java b/src/main/java/com/github/strangercoug/freecasino/games/model/table/poker/DrawPoker.java index 0f10176..a402367 100644 --- a/src/main/java/com/github/strangercoug/freecasino/games/model/table/poker/DrawPoker.java +++ b/src/main/java/com/github/strangercoug/freecasino/games/model/table/poker/DrawPoker.java @@ -44,9 +44,6 @@ public void play() { play(BigDecimal.valueOf(5, 2), BigDecimal.valueOf(1000, 2)); } - public abstract void play(BigDecimal betMinimum, - BigDecimal betMaximum); - @Override public boolean isValidBet(Player player, BigDecimal bet) { return (bet.compareTo(player.getFunds()) < 1