###prop
selectionType=points
startLine=3
startColumn=1
endLine=4
endColumn=1
newMethodName=initMethod
modifier=private
setPreferences=true
indentation=space
tabsize=4
###src
class TestClass{
    def TestClass(){
        String myString = ""
    }
}
###exp
class TestClass{
    def TestClass(){
        initMethod()
    }

    private initMethod() {
        String myString = ""
    }
}
###end