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 2022/04/06 15:03:54 UTC

[tika] branch main updated: fix checkstyle

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 fc896a45d fix checkstyle
fc896a45d is described below

commit fc896a45d2b0a90f933c0c230d9efedf026999cb
Author: tallison <ta...@apache.org>
AuthorDate: Wed Apr 6 11:03:46 2022 -0400

    fix checkstyle
---
 .../java/org/apache/tika/server/core/resource/DetectorResource.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tika-server/tika-server-core/src/main/java/org/apache/tika/server/core/resource/DetectorResource.java b/tika-server/tika-server-core/src/main/java/org/apache/tika/server/core/resource/DetectorResource.java
index ec0f37cdf..417db0a14 100644
--- a/tika-server/tika-server-core/src/main/java/org/apache/tika/server/core/resource/DetectorResource.java
+++ b/tika-server/tika-server-core/src/main/java/org/apache/tika/server/core/resource/DetectorResource.java
@@ -73,7 +73,7 @@ public class DetectorResource {
             LOG.error("OOM while detecting: ({})", filename, e);
             serverStatus.setStatus(ServerStatus.STATUS.ERROR);
             throw e;
-        } catch (Throwable e){
+        } catch (Throwable e) {
             LOG.error("Exception while detecting: ({})", filename, e);
             throw e;
         } finally {