This is an automated email from the ASF dual-hosted git repository. tilman pushed a commit to branch branch_3x in repository https://gitbox.apache.org/repos/asf/tika.git
commit 7c6b71738824af7fc6920a48ae16fec27b8de217 Author: Tilman Hausherr <[email protected]> AuthorDate: Wed Jun 25 05:58:17 2025 +0200 TIKA-4440: fix checkstyle problem --- tika-core/src/main/java/org/apache/tika/pipes/PipesServer.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tika-core/src/main/java/org/apache/tika/pipes/PipesServer.java b/tika-core/src/main/java/org/apache/tika/pipes/PipesServer.java index e339b619f..47283fa64 100644 --- a/tika-core/src/main/java/org/apache/tika/pipes/PipesServer.java +++ b/tika-core/src/main/java/org/apache/tika/pipes/PipesServer.java @@ -585,8 +585,7 @@ public class PipesServer implements Runnable { new EmittingEmbeddedDocumentBytesHandler(fetchEmitTuple, emitterManager)); } else { parseContext.set(EmbeddedDocumentBytesHandler.class, - new BasicEmbeddedDocumentBytesHandler( - embeddedDocumentBytesConfig)); + new BasicEmbeddedDocumentBytesHandler(embeddedDocumentBytesConfig)); } return parseContext; }
