Closed CodeMasterMo closed 3 years ago
@rharter i've added a PL to fix this issue. Would you mind to release a new version?
@rharter thank's for applying the pl. Is there any timeline you will release a new version (1.4?) and push it to maven repositories?
You should see 1.3.1 in central.
You should see 1.3.1 in central.
I don't see it
Am I looking on the wrong repositories?
Sorry about that, @mseele, I must've gotten distracted. It's syncing up now.
@rharter There is only a 1.3.1 in central for auto-value-gson-runtime, but my fix was in auto-value-gson-extension. Would you mind release a 1.3.1 for auto-value-gson-extension, too? Thank you!
We are using https://github.com/rharter/auto-value-gson to generate the TypeAdapter for our @AutoValue objects.
For Animal class
@AutoValue abstract class Animal { abstract String name();
} The code is generated with this part at the end
@Override @SuppressWarnings("unchecked") public Animal read(JsonReader jsonReader) throws IOException { ... ..
} Shouldn't this be builder.build();
We are using eclipse to build the code and compile to java 8.
Does anyone has any tips how to solve this?