You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ti...@apache.org on 2024/01/02 09:58:17 UTC

(tika) branch main updated: TIKA-4166: checkstyle fix

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

tilman 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 f40b7c49c TIKA-4166: checkstyle fix
f40b7c49c is described below

commit f40b7c49ccb335bb037abeaba0741ee7b51da381
Author: Tilman Hausherr <ti...@apache.org>
AuthorDate: Tue Jan 2 10:58:07 2024 +0100

    TIKA-4166: checkstyle fix
---
 tika-core/src/test/java/org/apache/tika/pipes/async/MockFetcher.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tika-core/src/test/java/org/apache/tika/pipes/async/MockFetcher.java b/tika-core/src/test/java/org/apache/tika/pipes/async/MockFetcher.java
index ebb04d342..10af275e3 100644
--- a/tika-core/src/test/java/org/apache/tika/pipes/async/MockFetcher.java
+++ b/tika-core/src/test/java/org/apache/tika/pipes/async/MockFetcher.java
@@ -28,8 +28,8 @@ import org.apache.tika.pipes.fetcher.Fetcher;
 public class MockFetcher implements Fetcher {
 
     private static final byte[] BYTES = ("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>" + "<mock>" +
-        "<metadata action=\"add\" name=\"dc:creator\">Nikolai Lobachevsky</metadata>" +
-        "<write element=\"p\">main_content</write>" + "</mock>").getBytes(StandardCharsets.UTF_8);
+            "<metadata action=\"add\" name=\"dc:creator\">Nikolai Lobachevsky</metadata>" +
+            "<write element=\"p\">main_content</write>" + "</mock>").getBytes(StandardCharsets.UTF_8);
 
     @Override
     public String getName() {