Hi Dirk, We have found and fixed both problems. Please check how it works in #505 when it is available. Thanks a lot for reporting these bugs!
Best regards, Eugene Zhuravlev, IntelliJ Software, http://www.intellij.com/ "Develop with pleasure" ----- Original Message ----- From: "Zoettl, Dirk" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Viegener, Johannes" <[EMAIL PROTECTED]> Sent: Thursday, October 04, 2001 18:48 Subject: RE: [Eap-list] Bug in #504 (Move multiple classes) > Hi Eugene, > > I can't give you the concrete examples, sorry. > But maybe the following can help you to find the bug: > > original: > > package x > class A > > package y > import x.A > class B1 extends A > > package y > import x.A > class B2 extends A > > package y > class C1 extends B1 > > package y > class C2 extends B2 > > after move of (B1,B2,C1,C2) to package x: > > package x > class A > > package x > import x.A <-- (not needed any more) > class B1 extends A > > package x > import x.A <-- (not needed any more) > class B2 extends A > > package x > class C1 extends B1 > > package x > class C1 extends B1 <-- (base class changed) > > MfG > Dirk Z�ttl > _______________________________________________________________ > > -----Original Message----- > From: Eugene Zhuravlev [mailto:[EMAIL PROTECTED]] > Sent: Donnerstag, 4. Oktober 2001 14:30 > To: [EMAIL PROTECTED] > Subject: Re: [Eap-list] Bug in #504 (Move multiple classes) > > > Hi Dirk, > > > - Change of base class when multiple files from the hierachy > > were moved together. > > Could you please clarify this? What do you mean? Any example would be great. > > > - After moving classes into the package where in base class > > is currently in, the superfluous imports were not removed. > > Could you provide an example for this issue? > > > Another annoying effect happens now in the project view, > > whenever you klick an already selected class, the files gets > > opened in the editor. In my view this double klick with > > infinite klick-delay is a bug. Lots a files are opened now > > unwanted. > > We have submitted the request and soon this bug will be fixed, thanks for > reporting this! > > Best regards, > Eugene Zhuravlev, > IntelliJ Software, http://www.intellij.com/ > "Develop with pleasure" > > > > ----- Original Message ----- > From: "Zoettl, Dirk" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: "Viegener, Johannes" <[EMAIL PROTECTED]> > Sent: Thursday, October 04, 2001 14:32 > Subject: [Eap-list] Bug in #504 (Move multiple classes) > > > > Hi, > > > > today I had to do a bigger redesign of the package structure > > of the project I'm working on. So I was glad to read about > > the new feature to move multiple classes at once. But the > > refactoring scrambled my sources. I had to move the 30 Java > > files one by one. I saw the following symptoms: > > > > - Change of base class when multiple files from the hierachy > > were moved together. > > > > - Application hangup after lots of exceptions when the moved > > files are open in the editor (not reproducable). > > > > - After moving classes into the package where in base class > > is currently in, the superfluous imports were not removed. > > > > Another annoying effect happens now in the project view, > > whenever you klick an already selected class, the files gets > > opened in the editor. In my view this double klick with > > infinite klick-delay is a bug. Lots a files are opened now > > unwanted. > > > > MfG > > Dirk Z�ttl > > > > _______________________________________________ > > Eap-list mailing list > > [EMAIL PROTECTED] > > http://www.intellij.com/mailman/listinfo/eap-list > > > _______________________________________________ > Eap-list mailing list > [EMAIL PROTECTED] > http://www.intellij.com/mailman/listinfo/eap-list > > _______________________________________________ > Eap-list mailing list > [EMAIL PROTECTED] > http://www.intellij.com/mailman/listinfo/eap-list _______________________________________________ Eap-list mailing list [EMAIL PROTECTED] http://www.intellij.com/mailman/listinfo/eap-list
