remove unused parameter

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
Marcel Hibbe 2023-02-15 15:09:08 +01:00
parent f2b312a118
commit 0ea13c1ec7
No known key found for this signature in database
GPG Key ID: C793F8B59F43CE7B
2 changed files with 2 additions and 4 deletions

View File

@ -1246,8 +1246,7 @@ public class CallActivity extends CallBaseActivity {
}
}
public void clickHand(Boolean raise) {
public void clickRaiseOrLowerHandButton() {
raiseHandViewModel.clickHandButton();
// TODO: fix how to build&send the message

View File

@ -87,8 +87,7 @@ class MoreCallActionsDialog(private val callActivity: CallActivity) : BottomShee
}
binding.raiseHand.setOnClickListener {
// TODO: save raised hand state & toggle...
callActivity.clickHand(true)
callActivity.clickRaiseOrLowerHandButton()
}
}