Converter on attribute is not called
Brought to you by:
niallg
Hello,
I just recently found a bug. This is the example:
class ... {
...
@Attribute(name = "attr")
@Convert(MyConverter.class)
private MyObject obj;
...
}
The problem is that the converter is not called. If I replace @Attribute to @Element, it works, but it is an element instead of an attribute.