Re: bean binding regression bug

2016-06-06 Thread yogu13
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.

Re: bean binding regression bug

2016-06-06 Thread Minh Tran
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

bean binding regression bug

2016-05-29 Thread Minh Tran
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 { @