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

Commit 9d0bfe1b authored by Nikita Iashchenko's avatar Nikita Iashchenko Committed by Gerrit Code Review
Browse files

Merge "Remove usage of optimized reflection getters"

parents bc545c8a a643441a
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;