Changeset 16624 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2020-06-14T14:55:18+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r16545 r16624 1183 1183 * @return a new {@link ThreadFactory} 1184 1184 */ 1185 @SuppressWarnings("ThreadPriorityCheck") 1185 1186 public static ThreadFactory newThreadFactory(final String nameFormat, final int threadPriority) { 1186 1187 return new ThreadFactory() { … … 1293 1294 * @return a {@link ForkJoinPool} 1294 1295 */ 1296 @SuppressWarnings("ThreadPriorityCheck") 1295 1297 public static ForkJoinPool newForkJoinPool(String pref, final String nameFormat, final int threadPriority) { 1296 1298 int noThreads = Config.getPref().getInt(pref, Runtime.getRuntime().availableProcessors());
Note:
See TracChangeset
for help on using the changeset viewer.