diff options
| author | 2021-07-22 22:24:48 +0100 | |
|---|---|---|
| committer | 2021-09-15 17:58:35 +0000 | |
| commit | 6c70a5b6496a6d59ce8855a2465a1111d3aed987 (patch) | |
| tree | ebc92eab1cd7da04c01a3c512e5e8527acf01725 | |
| parent | f8cd5af72eaa5ec1d43e37a1f090354d0f64c60c (diff) | |
Make RtlEnabledContext static
Change-Id: Id94c6fd99915b4c6659eeddb618e6da9bca2356c
Merged-In: Id94c6fd99915b4c6659eeddb618e6da9bca2356c
Bug: 194096719
Test: build
(cherry picked from commit 75b88b927312f92a5995ca37a228156f9ea5b38a)
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentInflater.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentInflater.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentInflater.java index 73c4b054fd4e..1530e5238c67 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentInflater.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentInflater.java @@ -874,7 +874,7 @@ public class NotificationContentInflater implements NotificationRowContentBinder mRow.getImageResolver().purgeCache(); } - private class RtlEnabledContext extends ContextWrapper { + private static class RtlEnabledContext extends ContextWrapper { private RtlEnabledContext(Context packageContext) { super(packageContext); } |