OCT 1. 修正代码语法检查
This commit is contained in:
parent
4425ba97db
commit
f4934f365d
|
@ -84,10 +84,8 @@ public class JsonParameterizedType implements ParameterizedType {
|
||||||
if (this.actualTypeArguments != null && this.actualTypeArguments.length > 0) {
|
if (this.actualTypeArguments != null && this.actualTypeArguments.length > 0) {
|
||||||
var1.append("<");
|
var1.append("<");
|
||||||
boolean var2 = true;
|
boolean var2 = true;
|
||||||
Type[] var3 = this.actualTypeArguments;
|
|
||||||
int var4 = var3.length;
|
|
||||||
|
|
||||||
for (Type var6 : var3) {
|
for (Type var6 : this.actualTypeArguments) {
|
||||||
if (!var2) {
|
if (!var2) {
|
||||||
var1.append(", ");
|
var1.append(", ");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue