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

checkstyle: redundant modifiers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/search/SearchCompiler.java

    r8510 r8512  
    203203     */
    204204    private interface MatchFactory {
    205         public Collection<String> getKeywords();
     205        Collection<String> getKeywords();
    206206    }
    207207
    208208    public interface SimpleMatchFactory extends MatchFactory {
    209         public Match get(String keyword, PushbackTokenizer tokenizer) throws ParseError;
     209        Match get(String keyword, PushbackTokenizer tokenizer) throws ParseError;
    210210    }
    211211
    212212    public interface UnaryMatchFactory extends MatchFactory {
    213         public UnaryMatch get(String keyword, Match matchOperand, PushbackTokenizer tokenizer) throws ParseError;
     213        UnaryMatch get(String keyword, Match matchOperand, PushbackTokenizer tokenizer) throws ParseError;
    214214    }
    215215
    216216    public interface BinaryMatchFactory extends MatchFactory {
    217         public BinaryMatch get(String keyword, Match lhs, Match rhs, PushbackTokenizer tokenizer) throws ParseError;
     217        BinaryMatch get(String keyword, Match lhs, Match rhs, PushbackTokenizer tokenizer) throws ParseError;
    218218    }
    219219
Note: See TracChangeset for help on using the changeset viewer.