Ignore:
Timestamp:
2015-06-20T14:36:00+02:00 (10 years ago)
Author:
Don-vip
Message:

fix many checkstyle violations

Location:
trunk/src/org/openstreetmap/josm/gui/widgets
Files:
2 edited

Legend:

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

    r8378 r8509  
    101101            public void actionPerformed(ActionEvent e) {
    102102                if (sourcesList.getSelectedIndex() == -1) {
    103                     JOptionPane.showMessageDialog(Main.parent, tr("Please select the row to delete."), tr("Information"), JOptionPane.QUESTION_MESSAGE);
     103                    JOptionPane.showMessageDialog(Main.parent, tr("Please select the row to delete."), tr("Information"),
     104                            JOptionPane.QUESTION_MESSAGE);
    104105                } else {
    105106                    ((DefaultListModel<String>) sourcesList.getModel()).remove(sourcesList.getSelectedIndex());
  • trunk/src/org/openstreetmap/josm/gui/widgets/JosmTextField.java

    r8291 r8509  
    2222 * <li>disables the global advanced key press detector when focused</li>
    2323 * <li>implements a workaround to <a href="https://bugs.openjdk.java.net/browse/JDK-6322854">JDK bug 6322854</a></li>
    24  * <br>This class must be used everywhere in core and plugins instead of {@code JTextField}.
     24 * </ul><br>This class must be used everywhere in core and plugins instead of {@code JTextField}.
    2525 * @since 5886
    2626 */
Note: See TracChangeset for help on using the changeset viewer.