Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 35f5bfea authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Use a property instead of a getter function for key in BubbleBarBubble....

Merge "Use a property instead of a getter function for key in BubbleBarBubble. Using a property here is more Kotlin idiomatic." into udc-dev
parents a40de23f b7d3d64d
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -30,7 +30,5 @@ data class BubbleBarBubble(
    val appName: String
) {

    fun getKey(): String {
        return info.key
    }
    val key: String = info.key
}