BeanJsonConverter converting getters from the interface and not the underlying
injected class
---------------------------------------------------------------------------------------------
Key: SHINDIG-985
URL: https://issues.apache.org/jira/browse/SHINDIG-985
Project: Shindig
Issue Type: Bug
Components: Java
Reporter: Chico Charlesworth
A bug cropped in since SHINDIG-912 commit (revision 755421) because it's only
converting getters from the interface and not the underlying injected class
(e.g. Activity instead of ActivityDb).
Here's the current code:
for (Map.Entry<String, Method> entry : getSetters(type).entrySet()) {
Which imho should be:
for (Map.Entry<String, Method> entry :
getSetters(out.getClass()).entrySet()) {
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.