You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the method public static Map<String, Object> getAttributes(Annotation annotation, PropertyResolver propertyResolver, boolean ignoreDefaultValue, String... ignoreAttributeNames)
if (attributeValue.getClass().isAnnotation()) {
continue;
}
if (attributeValue.getClass().isArray() && attributeValue.getClass().getComponentType().isAnnotation()) {
continue;
}
Should we delete these code ?
The text was updated successfully, but these errors were encountered:
Environment
Steps to reproduce this issue
Expected Result
the methods config works
Actual Result
the methods config doesn't work
If there is an exception, please attach the exception trace:
I find that it seems the code following generate the effect
in the method public static Map<String, Object> getAttributes(Annotation annotation, PropertyResolver propertyResolver, boolean ignoreDefaultValue, String... ignoreAttributeNames)
Should we delete these code ?
The text was updated successfully, but these errors were encountered: