Skip to content

Commit

Permalink
Fix a typo which causes NullPointerException in PosixPtyTerminal#resu…
Browse files Browse the repository at this point in the history
…me()
  • Loading branch information
hflzh committed May 20, 2018
1 parent 557500c commit 21f5d70
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void resume() {
inputPumpThread.start();
}
if (outputPumpThread == null) {
inputPumpThread = new Thread(this::pumpOut, toString() + " output pump thread");
outputPumpThread = new Thread(this::pumpOut, toString() + " output pump thread");
outputPumpThread.setDaemon(true);
outputPumpThread.start();
}
Expand Down

0 comments on commit 21f5d70

Please sign in to comment.