Skip to content

Commit

Permalink
Quit the shell on EOF (i.e. ^D) as per convention rather than parsing…
Browse files Browse the repository at this point in the history
… null
  • Loading branch information
radford committed May 1, 2012
1 parent 404db49 commit 9b1e40c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -65,7 +65,7 @@ public abstract class AbstractClient implements ShellClient
public static final String TITLE_MAX_LENGTH = "TITLE_MAX_LENGTH";

private static final Set<String> EXIT_COMMANDS = new HashSet<String>(
Arrays.asList( "exit", "quit" ) );
Arrays.asList( "exit", "quit", null ) );

private Console console;
private long timeConnection;
Expand Down

0 comments on commit 9b1e40c

Please sign in to comment.