###prop
selectionType=points
startLine=3
startColumn=1
endLine=4
endColumn=1
newMethodName=extr
modifier=private
setPreferences=true
indentation=space
tabsize=4
###src
class Constr {
    public Constr() {
        println("constructor")
    }
    public Constr(def a) {
        
    }
    static void main(args) {
        new Constr()
    }
}
###exp
class Constr {
    public Constr() {
        extr()
    }

    private extr() {
        println("constructor")
    }
    public Constr(def a) {
        
    }
    static void main(args) {
        new Constr()
    }
}
###end