Ignore:
Timestamp:
2014-05-06T12:06:16+02:00 (10 years ago)
Author:
bastiK
Message:

see #9691 - fix broken MapCSSTagChecker unit test

File:
1 edited

Legend:

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

    r7014 r7069  
    1111import org.openstreetmap.josm.gui.mappaint.StyleKeys;
    1212
    13 public abstract class Instruction implements StyleKeys {
     13public interface Instruction extends StyleKeys {
    1414
    15     public abstract void execute(Environment env);
     15    void execute(Environment env);
    1616
    1717    public static class RelativeFloat {
     
    2828    }
    2929
    30     public static class AssignmentInstruction extends Instruction {
     30    public static class AssignmentInstruction implements Instruction {
    3131        public final String key;
    3232        public final Object val;
Note: See TracChangeset for help on using the changeset viewer.