OCT 1. 修正代码语法检查

This commit is contained in:
黄昕 2024-02-05 16:35:14 +08:00
parent 4425ba97db
commit f4934f365d
1 changed files with 1 additions and 3 deletions

View File

@ -84,10 +84,8 @@ public class JsonParameterizedType implements ParameterizedType {
if (this.actualTypeArguments != null && this.actualTypeArguments.length > 0) {
var1.append("<");
boolean var2 = true;
Type[] var3 = this.actualTypeArguments;
int var4 = var3.length;
for (Type var6 : var3) {
for (Type var6 : this.actualTypeArguments) {
if (!var2) {
var1.append(", ");
}