changed question message
Project: http://git-wip-us.apache.org/repos/asf/syncope/repo Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/6cd894a4 Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/6cd894a4 Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/6cd894a4 Branch: refs/heads/master Commit: 6cd894a4f319cfe9fcf3ce8c3cde3a99fe6e1c28 Parents: 24e4144 Author: massi <[email protected]> Authored: Tue Nov 17 17:15:27 2015 +0100 Committer: massi <[email protected]> Committed: Thu Nov 19 18:06:33 2015 +0100 ---------------------------------------------------------------------- .../org/apache/syncope/client/cli/commands/user/UserList.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/syncope/blob/6cd894a4/client/cli/src/main/java/org/apache/syncope/client/cli/commands/user/UserList.java ---------------------------------------------------------------------- diff --git a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/user/UserList.java b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/user/UserList.java index 42b5a23..881dc96 100644 --- a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/user/UserList.java +++ b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/user/UserList.java @@ -44,8 +44,7 @@ public class UserList extends AbstractUserCommand { try { final Scanner scanIn = new Scanner(System.in); System.out.println( - "\nThis operation could be print a lot of information " - + "on your screen. Do you want to continue? [yes/no]"); + "\nThis operation might produce very heavy output. Do you want to continue? [yes/no]"); final String answer = scanIn.nextLine(); if ("yes".equalsIgnoreCase(answer)) { final PagedResult<UserTO> uResult = userSyncopeOperations.list();
