}
for (Map.Entry<String,AnnotatedMethod> en : methodsByProp.entrySet()) {
AnnotatedMethod am = en.getValue();
if (fixAccess) {
am.fixAccess();
}
// Does Method specify a serializer? If so, let's use it.
JsonSerializer<Object> annotatedSerializer = findSerializerFromAnnotation(config, am);
props.add(pb.buildProperty(en.getKey(), annotatedSerializer, am, staticTyping));
}