protected Regexp createRegexp()

in src/main/org/apache/ant/props/stringops/PatternOperation.java [171:175]


    protected Regexp createRegexp(String pattern, Project project) {
        RegularExpression re = new RegularExpression();
        re.setPattern(pattern);
        return re.getRegexp(project);
    }