重构不规范的类名

This commit is contained in:
Binary Wang
2017-12-16 18:40:45 +08:00
parent b152882c6f
commit d804d153fc
50 changed files with 87 additions and 104 deletions

View File

@@ -57,11 +57,11 @@ public class WxPayOrderNotifyResultConverter extends AbstractReflectionConverter
@Override
protected void marshallField(MarshallingContext context, Object newObj, Field field) {
if (field.getName().equals("couponList")) {
if ("couponList".equals(field.getName())) {
return;
} else {
super.marshallField(context, newObj, field);
}
super.marshallField(context, newObj, field);
}
@Override