mirror of
https://github.com/jrpie/Launcher.git
synced 2025-02-23 06:21:31 +01:00
code cleanup
This commit is contained in:
parent
c1650fab84
commit
55b48779cf
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ enum class LauncherAction(
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
fun byId(id: String): LauncherAction? {
|
fun byId(id: String): LauncherAction? {
|
||||||
return LauncherAction.values().singleOrNull { it.id == id }
|
return entries.singleOrNull { it.id == id }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun isOtherAction(id: String): Boolean {
|
fun isOtherAction(id: String): Boolean {
|
||||||
|
|
Loading…
Add table
Reference in a new issue