Changeset 8540 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2015-06-27T21:43:35+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r8513 r8540 1482 1482 gc.fill = GridBagConstraints.HORIZONTAL; 1483 1483 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); 1485 1486 cbDontShowAgain.setFont(cbDontShowAgain.getFont().deriveFont(Font.PLAIN)); 1486 1487 } -
trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java
r8510 r8540 191 191 } 192 192 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) { 194 195 StringBuilder sb = new StringBuilder(); 195 196 try (InputStream errStream = connection.getErrorStream()) {
Note: See TracChangeset
for help on using the changeset viewer.