Merge "Use a property instead of a getter function for key in BubbleBarBubble. Using a property here is more Kotlin idiomatic." into udc-dev

This commit is contained in:
TreeHugger Robot
2023-05-08 18:52:25 +00:00
committed by Android (Google) Code Review
@@ -30,7 +30,5 @@ data class BubbleBarBubble(
val appName: String
) {
fun getKey(): String {
return info.key
}
val key: String = info.key
}