###prop
selectionType=points
startLine=3
startColumn=1
endLine=4
endColumn=1
newMethodName=myExtract
modifier=private
setPreferences=true
indentation=space
tabsize=4
###src
class StaticMathod {
    public static start() {
        int a = 6
    }
}
###exp
class StaticMathod {
    public static start() {
        myExtract()
    }

    private static myExtract() {
        int a = 6
    }
}
###end