From 534809e3e927e70c20048ebecfb49aeac28f4405 Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 7 Feb 2020 18:57:25 +0100 Subject: [PATCH] Adds todo --- .../ui/modules/handhistory/model/HandHistorySettings.kt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/HandHistorySettings.kt b/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/HandHistorySettings.kt index 23481170..ad9f2694 100644 --- a/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/HandHistorySettings.kt +++ b/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/HandHistorySettings.kt @@ -31,10 +31,13 @@ class StraddleRowRepresentable( return canAdd } + /*** + * Removes a position + * Should not let holes + */ fun remove(position: Position) { - - this.selectedPositions.remove(position) + // TODO don't let holes be created in the selected positions, but not super important } }