Skip to content

Commit

Permalink
SHL-78 - Add an if check in JLineShellComponent's stop method.
Browse files Browse the repository at this point in the history
  • Loading branch information
markpollack committed Nov 15, 2012
1 parent 85849dc commit 7e429fc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -78,8 +78,10 @@ public void start() {




public void stop() { public void stop() {
closeShell(); if (running) {
running = false; closeShell();
running = false;
}
} }


public boolean isRunning() { public boolean isRunning() {
Expand Down

0 comments on commit 7e429fc

Please sign in to comment.