Ignore:
Timestamp:
2015-06-27T21:43:35+02:00 (8 years ago)
Author:
Don-vip
Message:

fix remaining checkstyle issues

Location:
trunk/src/org/openstreetmap/josm/plugins
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r8513 r8540  
    14821482            gc.fill = GridBagConstraints.HORIZONTAL;
    14831483            gc.weighty = 0.0;
    1484             add(cbDontShowAgain = new JCheckBox(tr("Do not ask again and remember my decision (go to Preferences->Plugins to change it later)")), gc);
     1484            add(cbDontShowAgain = new JCheckBox(
     1485                    tr("Do not ask again and remember my decision (go to Preferences->Plugins to change it later)")), gc);
    14851486            cbDontShowAgain.setFont(cbDontShowAgain.getFont().deriveFont(Font.PLAIN));
    14861487        }
  • trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java

    r8510 r8540  
    191191    }
    192192
    193     private void handleIOException(final ProgressMonitor monitor, IOException e, final String title, final String firstMessage, boolean displayMsg) {
     193    private void handleIOException(final ProgressMonitor monitor, IOException e, final String title, final String firstMessage,
     194            boolean displayMsg) {
    194195        StringBuilder sb = new StringBuilder();
    195196        try (InputStream errStream = connection.getErrorStream()) {
Note: See TracChangeset for help on using the changeset viewer.