Changeset 12620 in josm for trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
- Timestamp:
- 2017-08-22T22:26:32+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
r12523 r12620 105 105 import org.openstreetmap.josm.tools.InputMapUtils; 106 106 import org.openstreetmap.josm.tools.LanguageInfo; 107 import org.openstreetmap.josm.tools.Logging; 107 108 import org.openstreetmap.josm.tools.OpenBrowser; 108 109 import org.openstreetmap.josm.tools.Shortcut; … … 1172 1173 Main.worker.execute(() -> displayHelp(uris)); 1173 1174 } catch (URISyntaxException e1) { 1174 Main.error(e1);1175 Logging.error(e1); 1175 1176 } 1176 1177 } … … 1202 1203 */ 1203 1204 if (osize > -1 && conn.getContentLength() != -1 && Math.abs(conn.getContentLength() - osize) > 200) { 1204 Main.info("{0} is a mediawiki redirect", u);1205 Logging.info("{0} is a mediawiki redirect", u); 1205 1206 conn.disconnect(); 1206 1207 } else { … … 1213 1214 } 1214 1215 } catch (URISyntaxException | IOException e1) { 1215 Main.error(e1);1216 Logging.error(e1); 1216 1217 } 1217 1218 } … … 1415 1416 tagRowSorter.convertRowIndexToModel(tagTable.getSelectedRow()); 1416 1417 } catch (IndexOutOfBoundsException ignore) { 1417 Main.trace(ignore);1418 Main.trace("Clearing tagTable selection");1418 Logging.trace(ignore); 1419 Logging.trace("Clearing tagTable selection"); 1419 1420 tagTable.clearSelection(); 1420 1421 }
Note:
See TracChangeset
for help on using the changeset viewer.
