This is an automated email from the ASF dual-hosted git repository.
tallison pushed a commit to branch branch_2x
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/branch_2x by this push:
new 10653fb38 TIKA-4393 (#2163) -- checkstyle
10653fb38 is described below
commit 10653fb3810cf4ce403400d9c313eb6ef1ca7449
Author: tallison <[email protected]>
AuthorDate: Thu Mar 13 14:49:35 2025 -0400
TIKA-4393 (#2163) -- checkstyle
---
tika-xmp/src/test/java/org/apache/tika/xmp/TikaToXMPTest.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tika-xmp/src/test/java/org/apache/tika/xmp/TikaToXMPTest.java
b/tika-xmp/src/test/java/org/apache/tika/xmp/TikaToXMPTest.java
index da25605f7..518d7cc26 100644
--- a/tika-xmp/src/test/java/org/apache/tika/xmp/TikaToXMPTest.java
+++ b/tika-xmp/src/test/java/org/apache/tika/xmp/TikaToXMPTest.java
@@ -240,7 +240,8 @@ public class TikaToXMPTest {
final int numIterations = 100;
ExecutorService executorService =
Executors.newFixedThreadPool(numThreads);
try {
- ExecutorCompletionService<Integer> executorCompletionService = new
ExecutorCompletionService<>(executorService);
+ ExecutorCompletionService<Integer> executorCompletionService =
+ new ExecutorCompletionService<>(executorService);
for (int i = 0; i < numThreads; i++) {
executorCompletionService.submit(new Callable<Integer>() {
@Override