You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by al...@apache.org on 2018/07/17 02:02:30 UTC

nifi git commit: NIFI-5414 Fixed checkstyle error due to unused import.

Repository: nifi
Updated Branches:
  refs/heads/support/nifi-1.7.x a618ea559 -> e959630c2


NIFI-5414 Fixed checkstyle error due to unused import.


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/e959630c
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/e959630c
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/e959630c

Branch: refs/heads/support/nifi-1.7.x
Commit: e959630c22c9a52ec717141f6cf9f018830a38bf
Parents: a618ea5
Author: Andy LoPresto <al...@apache.org>
Authored: Thu Jul 12 01:19:19 2018 -0700
Committer: Andy LoPresto <al...@apache.org>
Committed: Thu Jul 12 01:19:19 2018 -0700

----------------------------------------------------------------------
 .../org/apache/nifi/controller/service/ServiceStateTransition.java  | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/e959630c/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/service/ServiceStateTransition.java
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/service/ServiceStateTransition.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/service/ServiceStateTransition.java
index e78f6c6..26e3b82 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/service/ServiceStateTransition.java
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/service/ServiceStateTransition.java
@@ -21,7 +21,6 @@ import org.apache.nifi.controller.ComponentNode;
 
 import java.util.ArrayList;
 import java.util.List;
-import java.util.Set;
 import java.util.concurrent.CompletableFuture;
 
 public class ServiceStateTransition {