Skip to content

Commit 10653fb

Browse files
committed
TIKA-4393 (#2163) -- checkstyle
1 parent 3d04698 commit 10653fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tika-xmp/src/test/java/org/apache/tika/xmp/TikaToXMPTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ public void testMultithreaded() throws Exception {
240240
final int numIterations = 100;
241241
ExecutorService executorService = Executors.newFixedThreadPool(numThreads);
242242
try {
243-
ExecutorCompletionService<Integer> executorCompletionService = new ExecutorCompletionService<>(executorService);
243+
ExecutorCompletionService<Integer> executorCompletionService =
244+
new ExecutorCompletionService<>(executorService);
244245
for (int i = 0; i < numThreads; i++) {
245246
executorCompletionService.submit(new Callable<Integer>() {
246247
@Override

0 commit comments

Comments
 (0)