From e88700b36be4a2b5a56344bd21d61a94a865cde6 Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 13 Feb 2020 13:24:11 +0100 Subject: [PATCH] Fixes warning --- .../android/ui/modules/handhistory/model/ActionList.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/ActionList.kt b/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/ActionList.kt index 6874be45..544270b3 100644 --- a/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/ActionList.kt +++ b/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/ActionList.kt @@ -14,7 +14,7 @@ interface ActionManager { fun getStreetNextCalls(index: Int): List fun getPlayerNextStreetActions(index: Int): List fun dropNextActions(index: Int) - fun allinAmountSet(position: Int) + fun allinAmountSet(positionIndex: Int) } interface ActionListListener : PlayerSetupCreationListener {