Changeset 34159 in osm for applications
- Timestamp:
- 2018-04-20T21:20:51+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wikipedia/src/org/wikipedia/gui/WikidataTagCellRenderer.java
r34079 r34159 57 57 ids.forEach(id -> 58 58 labelCache.computeIfAbsent(id, x -> 59 CompletableFuture.supplyAsync(() -> WikipediaApp.getLabelForWikidata(x, Locale.getDefault()))) 59 CompletableFuture.supplyAsync(() -> WikipediaApp.getLabelForWikidata(x, Locale.getDefault()), 60 // See #16204#comment:10 - Don't use ForkJoinPool#commonPool(), does not work with WebStart 61 Utils.newForkJoinPool("wikipedia.wikidata.renderer.numberOfThreads", "wikidata-renderer-%d", Thread.NORM_PRIORITY))) 60 62 ); 61 63
Note:
See TracChangeset
for help on using the changeset viewer.