Merge "Remove usage of optimized reflection getters"

This commit is contained in:
Nikita Iashchenko
2021-04-22 09:10:01 +00:00
committed by Gerrit Code Review

View File

@@ -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;