fix(serialize-generator): maybe fix missing semicolon
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
c81d7e0041
commit
5a9c3ee58f
@ -130,7 +130,7 @@ public abstract class GProcessor {
|
||||
.addParameter(TypeVariableName.get("Writer"), "writer")
|
||||
.addException(TypeVariableName.get("TEx"))
|
||||
.addException(Cl.MALFORMED_DATA_EXCEPTION)
|
||||
.addCode(isStatic ? "$T.$L;" : "$L.$L", isStatic ? adapter : "adapter", writeStatement)
|
||||
.addCode(isStatic ? "$T.$L;" : "$L.$L;", isStatic ? adapter : "adapter", writeStatement)
|
||||
.build()
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user