forked from JavaTX/JavaCompilerCore
Fixed bug 115
This commit is contained in:
parent
c2030123d5
commit
0903efda0d
@ -192,7 +192,10 @@ public class TPHExtractor extends AbstractASTWalker {
|
||||
@Override
|
||||
public void visit(Constructor cons) {
|
||||
inMethod = false;
|
||||
super.visit(cons);
|
||||
//super.visit(cons);
|
||||
cons.getParameterList().accept(this);
|
||||
if(cons.block != null)
|
||||
cons.block.accept(this);
|
||||
inMethod = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user