// Let super determine base
String[] propertiesToIgnore = super.findPropertiesToIgnore(ac);
if (ac != null && ac.getAnnotated() != null) {
Set<String> ignorePropertySet = new HashSet<>();
for (Method readMethod : ClassUtil.listGetterMethods(ac.getRawType())) {
CouchAttachment couchAttachment = readMethod.getAnnotation(CouchAttachment.class);
if (couchAttachment != null) {
String propertyName = Introspector.decapitalize(readMethod.getName().substring(3));
ignorePropertySet.add(propertyName);
}
CouchRevision couchRevision = readMethod.getAnnotation(CouchRevision.class);