You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2021/03/22 20:25:52 UTC

[tika] branch main updated: TIKA-3332 -- checkstyle fix

This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/main by this push:
     new 5da9984  TIKA-3332 -- checkstyle fix
5da9984 is described below

commit 5da9984cf226ac7ab517fb6fbd2f2fb7ca504079
Author: tallison <ta...@apache.org>
AuthorDate: Mon Mar 22 16:25:34 2021 -0400

    TIKA-3332 -- checkstyle fix
---
 .../src/main/java/org/apache/tika/parser/pdf/AbstractPDF2XHTML.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-pdf-module/src/main/java/org/apache/tika/parser/pdf/AbstractPDF2XHTML.java b/tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-pdf-module/src/main/java/org/apache/tika/parser/pdf/AbstractPDF2XHTML.java
index bb874b9..ed3b7c0 100644
--- a/tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-pdf-module/src/main/java/org/apache/tika/parser/pdf/AbstractPDF2XHTML.java
+++ b/tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-pdf-module/src/main/java/org/apache/tika/parser/pdf/AbstractPDF2XHTML.java
@@ -329,7 +329,7 @@ class AbstractPDF2XHTML extends PDFTextStripper {
             return;
         } else {
             for (PDNameTreeNode<PDComplexFileSpecification> node : kids) {
-                extractFilesfromEFTree(node, embeddedFileNames, depth+1);
+                extractFilesfromEFTree(node, embeddedFileNames, depth + 1);
             }
         }
     }