(final CachedClass klass, final Map<String, MetaProperty> index)
| 2752 | } |
| 2753 | |
| 2754 | private static void addFields(final CachedClass klass, final Map<String, MetaProperty> index) { |
| 2755 | for (CachedField field : klass.getFields()) { |
| 2756 | index.put(field.getName(), field); |
| 2757 | } |
| 2758 | } |
| 2759 | |
| 2760 | private static void copyNonPrivateFields(Map<String, MetaProperty> from, Map<String, MetaProperty> to, @javax.annotation.Nullable CachedClass klass) { |
| 2761 | for (Map.Entry<String, MetaProperty> entry : from.entrySet()) { |
no test coverage detected