From 52d6f862773215f63b07c1d8ee3d0341c037f689 Mon Sep 17 00:00:00 2001 From: tibbi Date: Thu, 13 Jan 2022 12:03:22 +0100 Subject: [PATCH] removing some unused constants --- .../simplemobiletools/keyboard/helpers/MyKeyboard.kt | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/keyboard/helpers/MyKeyboard.kt b/app/src/main/kotlin/com/simplemobiletools/keyboard/helpers/MyKeyboard.kt index 911fbb5..22aaa6f 100644 --- a/app/src/main/kotlin/com/simplemobiletools/keyboard/helpers/MyKeyboard.kt +++ b/app/src/main/kotlin/com/simplemobiletools/keyboard/helpers/MyKeyboard.kt @@ -206,16 +206,6 @@ class MyKeyboard { * @attr ref android.R.styleable#Keyboard_Key_keyEdgeFlags */ class Key(parent: Row) { - companion object { - private val KEY_STATE_NORMAL = intArrayOf() - private val KEY_STATE_NORMAL_ON = intArrayOf(android.R.attr.state_checkable, android.R.attr.state_checked) - private val KEY_STATE_NORMAL_OFF = intArrayOf(android.R.attr.state_checkable) - - private val KEY_STATE_PRESSED = intArrayOf(android.R.attr.state_pressed) - private val KEY_STATE_PRESSED_ON = intArrayOf(android.R.attr.state_pressed, android.R.attr.state_checkable, android.R.attr.state_checked) - private val KEY_STATE_PRESSED_OFF = intArrayOf(android.R.attr.state_pressed, android.R.attr.state_checkable) - } - /** All the key codes (unicode or custom code) that this key could generate, zero'th being the most important. */ var codes = ArrayList()