Make private for now

This commit is contained in:
Nehemiah of Zebulun 2023-10-10 15:30:22 -04:00
parent add9d0d020
commit bf7adcbb3a

View File

@ -7,12 +7,13 @@ import net.mezimmah.wkt9.keypad.KeyEventResult
import net.mezimmah.wkt9.keypad.KeyLayout import net.mezimmah.wkt9.keypad.KeyLayout
open class BaseInputMode: InputMode { open class BaseInputMode: InputMode {
private var packageName: String? = null
protected val tag = "WKT9" protected val tag = "WKT9"
protected var newKey = true protected var newKey = true
protected var keyIndex = 0 protected var keyIndex = 0
protected var lastKey: Key? = null protected var lastKey: Key? = null
protected var packageName: String? = null
protected open val keyCommandResolver: KeyCommandResolver = KeyCommandResolver.getBasic() protected open val keyCommandResolver: KeyCommandResolver = KeyCommandResolver.getBasic()