Changeset 12368 in josm


Ignore:
Timestamp:
2017-06-09T20:27:07+02:00 (7 years ago)
Author:
michael2402
Message:

Fix checkstyle

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MapFrame.java

    r12347 r12368  
    9797    public static final int DEF_TOGGLE_DLG_WIDTH = 330;
    9898
    99     private final static IntegerProperty TOGGLE_DIALOGS_WIDTH = new IntegerProperty("toggleDialogs.width", DEF_TOGGLE_DLG_WIDTH);
     99    private static final IntegerProperty TOGGLE_DIALOGS_WIDTH = new IntegerProperty("toggleDialogs.width", DEF_TOGGLE_DLG_WIDTH);
    100100    /**
    101101     * Do not require to switch modes (potlatch style workflow) for drawing/selecting map modes.
    102102     * @since 12347
    103103     */
    104     public final static BooleanProperty MODELESS = new BooleanProperty("modeless", false);
     104    public static final BooleanProperty MODELESS = new BooleanProperty("modeless", false);
    105105    /**
    106106     * The current mode, this frame operates.
  • trunk/test/unit/org/openstreetmap/josm/command/SelectCommandTest.java

    r12350 r12368  
    125125        SelectCommand command = new SelectCommand(Arrays.asList(testData.existingNode));
    126126        command.executeCommand();
    127         assertArrayEquals(new Object[] { testData.existingNode }, command.getParticipatingPrimitives().toArray());
     127        assertArrayEquals(new Object[] {testData.existingNode}, command.getParticipatingPrimitives().toArray());
    128128    }
    129129
Note: See TracChangeset for help on using the changeset viewer.