From 0463180a16adb94c925ca7cd8c060efe4b956c69 Mon Sep 17 00:00:00 2001 From: Joshua Tsuji Date: Mon, 13 Apr 2020 12:30:34 -0400 Subject: [PATCH] Rename file because gradle doesn't like camelCase. Test: gradle builds again, yay! Bug: 153867127 Change-Id: I87c2f0a02c17ef8f133ca3a251e5679ad0133fe5 --- ...withEmpty.xml => controls_horizontal_divider_with_empty.xml} | 0 .../com/android/systemui/controls/management/ControlAdapter.kt | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename packages/SystemUI/res/layout/{controls_horizontal_divider_withEmpty.xml => controls_horizontal_divider_with_empty.xml} (100%) diff --git a/packages/SystemUI/res/layout/controls_horizontal_divider_withEmpty.xml b/packages/SystemUI/res/layout/controls_horizontal_divider_with_empty.xml similarity index 100% rename from packages/SystemUI/res/layout/controls_horizontal_divider_withEmpty.xml rename to packages/SystemUI/res/layout/controls_horizontal_divider_with_empty.xml diff --git a/packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt b/packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt index 607934c3bae73..03ca3931e68c8 100644 --- a/packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt +++ b/packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt @@ -81,7 +81,7 @@ class ControlAdapter( } TYPE_DIVIDER -> { DividerHolder(layoutInflater.inflate( - R.layout.controls_horizontal_divider_withEmpty, parent, false)) + R.layout.controls_horizontal_divider_with_empty, parent, false)) } else -> throw IllegalStateException("Wrong viewType: $viewType") }