Adjust delegate to adapter
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Johannes Frohnmeyer 2022-11-01 23:11:29 +01:00
parent a337c2a76e
commit 0c41e42dd9
Signed by: Johannes
GPG Key ID: E76429612C2929F4
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public class GsonCompileProcessor extends AbstractProcessor2 {
.addParameter(classType, "value")
.addException(IOException.class)
.returns(classType)
.addCode("$T.write(reader, value);", adapter)
.addCode("$T.write(writer, value);", adapter)
.build()
);
}