Status: New
Owner: ----
CC: anquetil...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-VerveineJ
New issue 638 by tu...(a)tudorgirba.com: VerveineJ seems to import some
methods multiple times
http://code.google.com/p/moose-technology/issues/detail?id=638
See the attached example.
DefaultConstructor::method() appears twice: once as a stub and once normal.
The interesting thing is that the stub is the one that receives the
invocation from the static method. This might be due to the following
scenario:
- the first visited method is methodWithClassScope(),
- the invocation is created to a stub method()
- the second visited method is method()
- but somehow it is not reconciled with the already created stub method
package x;
public class DefaultConstructor {
public method() {}
public static void methodWithClassScope() {
DefaultConstructor x = new DefaultConstructor();
x.method();
}
}
Attachments:
DefaultConstructor.java 184 bytes