You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2021/09/09 15:22:53 UTC

[sling-org-apache-sling-commons-clam] 13/25: [checkstyle] (modifier) InterfaceMemberImpliedModifier

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

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-clam.git

commit d4b695ef64d31967182010a2d36c271ccf51fada
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Wed Sep 8 21:47:15 2021 +0200

    [checkstyle] (modifier) InterfaceMemberImpliedModifier
---
 src/main/java/org/apache/sling/commons/clam/ClamService.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/commons/clam/ClamService.java b/src/main/java/org/apache/sling/commons/clam/ClamService.java
index 11eeb3b..d223d2a 100644
--- a/src/main/java/org/apache/sling/commons/clam/ClamService.java
+++ b/src/main/java/org/apache/sling/commons/clam/ClamService.java
@@ -37,6 +37,6 @@ public interface ClamService {
      * @return The scan result from Clam
      * @throws IOException if scanning data or parsing reply fails
      */
-    @NotNull ScanResult scan(@NotNull final InputStream data) throws IOException;
+    public abstract @NotNull ScanResult scan(@NotNull final InputStream data) throws IOException;
 
 }