Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/GettingStarted.java
r11031 r11040 6 6 import java.awt.BorderLayout; 7 7 import java.awt.EventQueue; 8 import java.awt.event.InputEvent;9 import java.awt.event.KeyEvent;10 8 import java.io.IOException; 11 9 import java.net.URL; … … 17 15 import javax.swing.JPanel; 18 16 import javax.swing.JScrollPane; 19 import javax.swing.KeyStroke;20 17 import javax.swing.border.EmptyBorder; 21 18 import javax.swing.event.HyperlinkEvent; -
trunk/src/org/openstreetmap/josm/gui/dialogs/MenuItemSearchDialog.java
r11031 r11040 113 113 public static class Action extends JosmAction { 114 114 115 // CHECKSTYLE.OFF: LineLength 116 /** Action shortcut (ctrl / space by default */ 115 117 public static final Shortcut SHORTCUT = Shortcut.registerShortcut("help:search-items", "Search menu items", KeyEvent.VK_SPACE, Shortcut.CTRL); 118 // CHECKSTYLE.ON: LineLength 116 119 120 /** 121 * Constructs a new {@code Action}. 122 */ 117 123 public Action() { 118 124 super(tr("Search menu items"), "dialogs/search", null, -
trunk/test/unit/org/openstreetmap/josm/gui/layer/OsmDataLayerTest.java
r11033 r11040 10 10 import java.io.File; 11 11 12 import org.fest.assertions.Assertions;13 12 import org.junit.BeforeClass; 14 13 import org.junit.Test;
Note:
See TracChangeset
for help on using the changeset viewer.