Object#getClass and Map#isEmpty
(final String name)
| 2346 | * Object#getClass and Map#isEmpty |
| 2347 | */ |
| 2348 | private boolean isSpecialProperty(final String name) { |
| 2349 | return "class".equals(name) || (isMap && "empty".equals(name)); |
| 2350 | } |
| 2351 | |
| 2352 | private boolean isVisibleProperty(final MetaProperty field, final MetaMethod method, final Class<?> sender) { |
| 2353 | if (field == null |
no test coverage detected