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

Commit f10f3736 authored by Nikita Iashchenko's avatar Nikita Iashchenko Committed by Automerger Merge Worker
Browse files

Merge "Remove usage of optimized reflection getters" am: 9d0bfe1b

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1682029

Change-Id: I0506f91963cce67b60cdca85303d859c3aaee0a1
parents 7a52d5a3 9d0bfe1b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1464,8 +1464,8 @@ public class ViewDebug {
        PropertyInfo<ExportedProperty, ?>[] properties = sExportProperties.get(klass);

        if (properties == null) {
            properties = convertToPropertyInfos(klass.getDeclaredMethodsUnchecked(false),
                    klass.getDeclaredFieldsUnchecked(false), ExportedProperty.class);
            properties = convertToPropertyInfos(klass.getDeclaredMethods(),
                    klass.getDeclaredFields(), ExportedProperty.class);
            map.put(klass, properties);
        }
        return properties;