You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by ma...@apache.org on 2015/11/27 17:02:41 UTC

[6/6] syncope git commit: Added message for empty running jobs

Added message for empty running jobs


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

Branch: refs/heads/master
Commit: 5153b165381d034c3e379dc23ba8a9b14f64b13e
Parents: becd01e
Author: massi <ma...@tirasa.net>
Authored: Fri Nov 27 15:13:27 2015 +0100
Committer: massi <ma...@tirasa.net>
Committed: Fri Nov 27 17:00:42 2015 +0100

----------------------------------------------------------------------
 .../client/cli/commands/task/TaskListRunningJobs.java   | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/5153b165/client/cli/src/main/java/org/apache/syncope/client/cli/commands/task/TaskListRunningJobs.java
----------------------------------------------------------------------
diff --git a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/task/TaskListRunningJobs.java b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/task/TaskListRunningJobs.java
index 3b278e4..dfdcaf2 100644
--- a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/task/TaskListRunningJobs.java
+++ b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/task/TaskListRunningJobs.java
@@ -26,17 +26,17 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 public class TaskListRunningJobs extends AbstractTaskCommand {
-    
+
     private static final Logger LOG = LoggerFactory.getLogger(TaskListRunningJobs.class);
-    
+
     private static final String READ_HELP_MESSAGE = "task --list-running-jobs";
-    
+
     private final Input input;
-    
+
     public TaskListRunningJobs(final Input input) {
         this.input = input;
     }
-    
+
     public void list() {
         if (input.parameterNumber() == 0) {
             try {
@@ -53,6 +53,6 @@ public class TaskListRunningJobs extends AbstractTaskCommand {
         } else {
             taskResultManager.unnecessaryParameters(input.listParameters(), READ_HELP_MESSAGE);
         }
-        
+
     }
 }