Ignore:
Timestamp:
2014-02-25T01:31:24+01:00 (10 years ago)
Author:
Don-vip
Message:

fix some Sonar issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java

    r6859 r6883  
    2222import org.openstreetmap.josm.tools.Utils;
    2323
    24 abstract public class Condition {
    25 
    26     abstract public boolean applies(Environment e);
     24public abstract class Condition {
     25
     26    public abstract boolean applies(Environment e);
    2727
    2828    public static Condition createKeyValueCondition(String k, String v, Op op, Context context, boolean considerValAsKey) {
     
    132132
    133133    /**
    134      * context, where the condition applies
     134     * Context, where the condition applies.
    135135     */
    136136    public static enum Context {
     
    146146    }
    147147
    148     public final static EnumSet<Op> COMPARISON_OPERATERS =
     148    public static final EnumSet<Op> COMPARISON_OPERATERS =
    149149        EnumSet.of(Op.GREATER_OR_EQUAL, Op.GREATER, Op.LESS_OR_EQUAL, Op.LESS);
    150150
Note: See TracChangeset for help on using the changeset viewer.