You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cs...@apache.org on 2019/07/02 14:19:14 UTC

[sling-org-apache-sling-distribution-journal-kafka] branch master updated: SLING-8554 - Remove final

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

cschneider pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-journal-kafka.git


The following commit(s) were added to refs/heads/master by this push:
     new 2db90bc  SLING-8554 - Remove final
2db90bc is described below

commit 2db90bcfe576e8dc3a37cee7a4562941a07fee4d
Author: Christian Schneider <cs...@adobe.com>
AuthorDate: Tue Jul 2 16:19:04 2019 +0200

    SLING-8554 - Remove final
---
 .../apache/sling/distribution/journal/kafka/KafkaClientProvider.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/distribution/journal/kafka/KafkaClientProvider.java b/src/main/java/org/apache/sling/distribution/journal/kafka/KafkaClientProvider.java
index f30c7e4..9cc9703 100644
--- a/src/main/java/org/apache/sling/distribution/journal/kafka/KafkaClientProvider.java
+++ b/src/main/java/org/apache/sling/distribution/journal/kafka/KafkaClientProvider.java
@@ -212,7 +212,7 @@ public class KafkaClientProvider implements MessagingProvider, Closeable {
         }
     }
 
-    private void closeQuietly(final Closeable closeable) {
+    private void closeQuietly(Closeable closeable) {
         try {
             if (closeable != null) {
                 closeable.close();