Chase Bradford

Results 4 comments of Chase Bradford

1) ObjectMapper is a java class with a generic readValue call. It doesn't have any runtime type information, so you have to give it some by passing the class. `mapper.readValue(json,...

I doubt there is a fix for the nested container types. The JVM sees that as Option[Seq[Object]]. Scala just doesn't provide enough type information to figure that out, and the...

This appears to be caused by this change, and is specific to java code generated from syntax2 files. https://github.com/protocolbuffers/protobuf/commit/cc5a1bfede7f5b691760ae3efe271961e466cedb That change makes the PARSER field deprecated, but generated methods use...

Thanks for the patch. It looks similar to what I did.