We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d04698 commit 10653fbCopy full SHA for 10653fb
tika-xmp/src/test/java/org/apache/tika/xmp/TikaToXMPTest.java
@@ -240,7 +240,8 @@ public void testMultithreaded() throws Exception {
240
final int numIterations = 100;
241
ExecutorService executorService = Executors.newFixedThreadPool(numThreads);
242
try {
243
- ExecutorCompletionService<Integer> executorCompletionService = new ExecutorCompletionService<>(executorService);
+ ExecutorCompletionService<Integer> executorCompletionService =
244
+ new ExecutorCompletionService<>(executorService);
245
for (int i = 0; i < numThreads; i++) {
246
executorCompletionService.submit(new Callable<Integer>() {
247
@Override
0 commit comments