@@ -160,7 +160,7 @@ public static Map<String, Object> getFieldsAndDefaultValue(PsiClass psiClass, Ps
160
160
161
161
LinkedList <String > temp = new LinkedList <>(qualifiedNameList );
162
162
if (classInType != null && hasContainQualifiedName (temp , classInType .getQualifiedName ())) {
163
- list .add ("Object for" + classInType .getName ());
163
+ list .add ("Object for " + classInType .getName ());
164
164
} else {
165
165
list .add (getFieldsAndDefaultValue (classInType , null , temp ));
166
166
}
@@ -180,7 +180,7 @@ public static Map<String, Object> getFieldsAndDefaultValue(PsiClass psiClass, Ps
180
180
// 参数类型为对象 校验是否递归
181
181
LinkedList <String > temp = new LinkedList <>(qualifiedNameList );
182
182
if (hasContainQualifiedName (temp , iterableClass .getQualifiedName ())) {
183
- list .add ("Object for" + iterableClass .getName ());
183
+ list .add ("Object for " + iterableClass .getName ());
184
184
} else {
185
185
list .add (getFieldsAndDefaultValue (iterableClass , null , temp ));
186
186
}
@@ -213,7 +213,7 @@ public static Map<String, Object> getFieldsAndDefaultValue(PsiClass psiClass, Ps
213
213
214
214
LinkedList <String > temp = new LinkedList <>(qualifiedNameList );
215
215
if (classInType != null && hasContainQualifiedName (temp , classInType .getQualifiedName ())) {
216
- fieldMap .put (name , "Object for" + classInType .getName ());
216
+ fieldMap .put (name , "Object for " + classInType .getName ());
217
217
} else {
218
218
fieldMap .put (name , getFieldsAndDefaultValue (PsiUtil .resolveClassInType (type ), null , temp ));
219
219
}
0 commit comments