Skip to content

Commit

Permalink
samples: Add back missing break statement (#1512)
Browse files Browse the repository at this point in the history
Looks like this line accidentally got removed awhile back. Putting it back in so the program properly terminates.
  • Loading branch information
nnegrey authored and chingor13 committed Aug 15, 2020
1 parent a02abf4 commit d250d85
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,7 @@ public void onError(Throwable t) {
System.out.println("Stop speaking.");
targetDataLine.stop();
targetDataLine.close();
break;
}
request =
StreamingRecognizeRequest.newBuilder()
Expand Down

0 comments on commit d250d85

Please sign in to comment.