|
From: Torsten J. <tor...@on...> - 2005-07-08 21:18:12
|
Fixed http://springide.org/project/ticket/99 Thanx for spotting this. Cheers, Torsten PS. Next time please create a ticket in the project's bug tracking system (via http://springide.org/project/newticket ) instead sending a mail to the mailing list :-) On 08.07.2005, at 15:19, snpe wrote: > Hello, > I'm sorry for double post, but I don't receive first message > There is yet one problem with this method > > scenario : type A have 2 public constructor : > > public A () { > // impl > } > > public A (...any number of parameter..) { > // impl > } > > When we define bean with no parameter spring-ide return error > 'no constructor with argument 0 ...' > Problem exists only when no argument constructor is last (second > if we have more constructors) > > This is patch. Please apply > > --- /u2/spring-ide/trunk/org.springframework.ide.eclipse.beans.core/ > src/org/springframework/ide/eclipse/beans/core/internal/ > Introspector.java 2005-06-09 05:03:53.000000000 +0000 > +++ ./org.springframework.ide.eclipse.beans.core/src/org/ > springframework/ide/eclipse/beans/core/internal/Introspector.java > 2005-07-08 03:28:27.000000000 +0000 > @@ -48,9 +48,7 @@ > return true; > } > } > - if (hasImplicitConstructor) { > - return false; > - } > + hasImplicitConstructor = false; > } > } > return hasImplicitConstructor; > > > ------------------------------------------------------- > This SF.Net email is sponsored by the 'Do More With Dual!' webinar > happening > July 14 at 8am PDT/11am EDT. We invite you to explore the latest in > dual > core and dual graphics technology at this free one hour event > hosted by HP, > AMD, and NVIDIA. To register visit http://www.hp.com/go/dualwebinar > _______________________________________________ > Springide-eclip-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springide-eclip-developer > |