fix(serialize-generator): maybe fix missing semicolon
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Johannes Frohnmeyer 2024-04-24 10:21:58 +02:00
parent c81d7e0041
commit 5a9c3ee58f
Signed by: Johannes
GPG Key ID: E76429612C2929F4
1 changed files with 1 additions and 1 deletions

View File

@ -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()
);
}