You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by vi...@apache.org on 2020/03/20 09:44:24 UTC

[incubator-hudi] branch master updated: [HUDI-726]Delete unused method in HoodieDeltaStreamer (#1426)

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

vinoyang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 21c45e1  [HUDI-726]Delete unused method in HoodieDeltaStreamer (#1426)
21c45e1 is described below

commit 21c45e1051b593f0e1023a84cb96658320046dae
Author: Mathieu <wx...@126.com>
AuthorDate: Fri Mar 20 17:44:16 2020 +0800

    [HUDI-726]Delete unused method in HoodieDeltaStreamer (#1426)
---
 .../org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java  | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java b/hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java
index 01ab1cc..bff2b41 100644
--- a/hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java
+++ b/hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java
@@ -576,8 +576,4 @@ public class HoodieDeltaStreamer implements Serializable {
       }, executor)).toArray(CompletableFuture[]::new)), executor);
     }
   }
-
-  public DeltaSyncService getDeltaSyncService() {
-    return deltaSyncService;
-  }
 }