Ignore:
Timestamp:
2015-06-21T01:13:09+02:00 (8 years ago)
Author:
Don-vip
Message:

checkstyle: redundant modifiers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java

    r8510 r8512  
    3434    private static final String SEPARATOR = "[:_]";
    3535
    36     private static final Pattern getPatternFor(String s) {
     36    private static Pattern getPatternFor(String s) {
    3737        return getPatternFor(s, false);
    3838    }
    3939
    40     private static final Pattern getPatternFor(String s, boolean exactMatch) {
     40    private static Pattern getPatternFor(String s, boolean exactMatch) {
    4141        if (exactMatch) {
    4242            return Pattern.compile("(^)(" + s + ")($)");
Note: See TracChangeset for help on using the changeset viewer.