Closed GoogleCodeExporter closed 8 years ago
Original comment by pnied...@gmail.com
on 30 Mar 2013 at 7:15
Hey Peter -
Where are using the 1.0 SNAPSHOT on an internal project and had some tests
start failing on Friday after we got the latest snapshot and I think it's
related to your fixes for this issue.
We are mocking the readValue method in Jackson Databind ObjectMapper class.
It's signature looks like this:
public <T> T readValue(String content, Class<T> valueType)
This is now throwing an Exception on us from GenericTypeReflector.java:43
because the 'type' argument being passed into the erase method is null.
When I debug into the code, I see that the call to
GenericTypeReflector.mapTypeParameters receives these arguments:
toMapType = TypeVariableImpl ("T")
typeAndParams = class com.fasterxml.jackson.databind.ObjectMapper
The code inside mapTypeParameters returns null, because the type information
isn't on the class, but on the second parameter of the method call.
Love the work you're doing. Let me know if I can provide you will any other
information. Thanks!
John
Original comment by JEngel...@bloomhealthco.com
on 7 Apr 2013 at 5:18
Can you provide a reproducible example?
Original comment by pnied...@gmail.com
on 7 Apr 2013 at 5:47
Here you go Peter.
Original comment by JEngel...@bloomhealthco.com
on 7 Apr 2013 at 7:09
Attachments:
Fixed. If you find another problem of this kind, please create a new issue.
Original comment by pnied...@gmail.com
on 9 Apr 2013 at 8:59
Original issue reported on code.google.com by
pnied...@gmail.com
on 30 Mar 2013 at 3:20