Changeset 8764 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-09-18T00:57:22+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r8756 r8764 1303 1303 */ 1304 1304 public static ThreadFactory newThreadFactory(final String nameFormat, final int threadPriority) { 1305 final String ignore = String.format(Locale.ENGLISH, nameFormat, 0);// fail fast 1305 final String ignore = String.format(Locale.ENGLISH, nameFormat, 0); // fail fast 1306 1306 return new ThreadFactory() { 1307 1307 final AtomicLong count = new AtomicLong(0);
Note:
See TracChangeset
for help on using the changeset viewer.