This content has been marked as final.
Show 1 reply
-
1. Re: package rename
spampete Dec 8, 2008 4:28 AM (in response to spampete)ok, sorry for this stupid question, package rename is included in class rename.
Now, when I rename my com.company.app.TestClassA to com.test.A, I get a strange and quite unexpected "import com.company.app.TestClassA".. how come ?
currently using javassist 3.9.0, don't know if this was already occuring before.
regardspackage com.company.app; public class TestClassA{ public TestClassA(){ // .... } }
becomespackage com.test; import com.company.app.TestClassA; public class A{ public A(){ // .... } }