You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2018/10/26 15:51:51 UTC

[kafka] branch remove-unused-commit-sync-console-consumer created (now bcce8f4)

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

ijuma pushed a change to branch remove-unused-commit-sync-console-consumer
in repository https://gitbox.apache.org/repos/asf/kafka.git.


      at bcce8f4  MINOR: Remove unused commitSync in ConsoleConsumer

This branch includes the following new commits:

     new bcce8f4  MINOR: Remove unused commitSync in ConsoleConsumer

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[kafka] 01/01: MINOR: Remove unused commitSync in ConsoleConsumer

Posted by ij...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ijuma pushed a commit to branch remove-unused-commit-sync-console-consumer
in repository https://gitbox.apache.org/repos/asf/kafka.git

commit bcce8f4adb4082420bb8d35b0445a781ae1112af
Author: Ismael Juma <is...@juma.me.uk>
AuthorDate: Fri Oct 26 08:50:31 2018 -0700

    MINOR: Remove unused commitSync in ConsoleConsumer
---
 core/src/main/scala/kafka/tools/ConsoleConsumer.scala | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/core/src/main/scala/kafka/tools/ConsoleConsumer.scala b/core/src/main/scala/kafka/tools/ConsoleConsumer.scala
index 06705d5..be50be1 100755
--- a/core/src/main/scala/kafka/tools/ConsoleConsumer.scala
+++ b/core/src/main/scala/kafka/tools/ConsoleConsumer.scala
@@ -454,9 +454,6 @@ object ConsoleConsumer extends Logging {
       this.consumer.close()
     }
 
-    def commitSync() {
-      this.consumer.commitSync()
-    }
   }
 }