it was changed as part of CAMEL-9656, you can comment on the JIRA and check
the response.
--
View this message in context:
http://camel.465427.n5.nabble.com/bean-binding-regression-bug-tp5783228p5783528.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Should I raise a jira? Thanks.
> On 30 May 2016, at 9:40 AM, Minh Tran wrote:
>
> Hi
>
> I’m seeing an unusual problem with bean binding when I upgraded from 2.17.0
> to 2.17.1.
>
> I’ve simplified it to the following example
>
> public interface IBar {
> Object load();
> }
>
> publi
Hi
I’m seeing an unusual problem with bean binding when I upgraded from 2.17.0 to
2.17.1.
I’ve simplified it to the following example
public interface IBar {
Object load();
}
public interface IFoo extends IBar {
Object fooLoad();
}
public class Foo implements IFoo {
@