Changeset 11040 in josm


Ignore:
Timestamp:
2016-09-22T23:01:34+02:00 (8 years ago)
Author:
Don-vip
Message:

checkstyle

Location:
trunk
Files:
3 edited

Legend:

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

    r11031 r11040  
    66import java.awt.BorderLayout;
    77import java.awt.EventQueue;
    8 import java.awt.event.InputEvent;
    9 import java.awt.event.KeyEvent;
    108import java.io.IOException;
    119import java.net.URL;
     
    1715import javax.swing.JPanel;
    1816import javax.swing.JScrollPane;
    19 import javax.swing.KeyStroke;
    2017import javax.swing.border.EmptyBorder;
    2118import javax.swing.event.HyperlinkEvent;
  • trunk/src/org/openstreetmap/josm/gui/dialogs/MenuItemSearchDialog.java

    r11031 r11040  
    113113    public static class Action extends JosmAction {
    114114
     115        // CHECKSTYLE.OFF: LineLength
     116        /** Action shortcut (ctrl / space by default */
    115117        public static final Shortcut SHORTCUT = Shortcut.registerShortcut("help:search-items", "Search menu items", KeyEvent.VK_SPACE, Shortcut.CTRL);
     118        // CHECKSTYLE.ON: LineLength
    116119
     120        /**
     121         * Constructs a new {@code Action}.
     122         */
    117123        public Action() {
    118124            super(tr("Search menu items"), "dialogs/search", null,
  • trunk/test/unit/org/openstreetmap/josm/gui/layer/OsmDataLayerTest.java

    r11033 r11040  
    1010import java.io.File;
    1111
    12 import org.fest.assertions.Assertions;
    1312import org.junit.BeforeClass;
    1413import org.junit.Test;
Note: See TracChangeset for help on using the changeset viewer.