Changeset 14439 in josm
- Timestamp:
- 2018-11-21T08:29:31+01:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/Cascade.java
r14153 r14439 181 181 return Float.valueOf((String) o); 182 182 } catch (NumberFormatException e) { 183 Logging.debug("' {0}' cannot be converted to float", o);183 Logging.debug("''{0}'' cannot be converted to float", o); 184 184 } 185 185 } -
trunk/src/org/openstreetmap/josm/io/OverpassDownloadReader.java
r14214 r14439 302 302 idOffset.put(OsmPrimitiveType.RELATION, 3_600_000_000L); 303 303 final PrimitiveId osmId = searchName(area).getOsmId(); 304 Logging.debug("Area ' {0}' resolved to {1}", area, osmId);304 Logging.debug("Area ''{0}'' resolved to {1}", area, osmId); 305 305 return String.format("area(%d)", osmId.getUniqueId() + idOffset.get(osmId.getType())); 306 306 } -
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r14414 r14439 987 987 if (systemProp != null) { 988 988 plugins.addAll(Arrays.asList(systemProp.split(","))); 989 Logging.debug("josm.plugins system property set to ' {0}'. Plugins list is now {1}", systemProp, plugins);989 Logging.debug("josm.plugins system property set to ''{0}''. Plugins list is now {1}", systemProp, plugins); 990 990 } 991 991 monitor.subTask(tr("Removing deprecated plugins...")); -
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r14406 r14439 1340 1340 } 1341 1341 if (GraphicsEnvironment.isHeadless()) { 1342 Logging.debug("Cursors are not available in headless mode. Returning null for ' {0}'", name);1342 Logging.debug("Cursors are not available in headless mode. Returning null for ''{0}''", name); 1343 1343 return null; 1344 1344 }
Note:
See TracChangeset
for help on using the changeset viewer.