We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bebf3a commit 2a30d77Copy full SHA for 2a30d77
java/com/google/scrollview/ScrollView.java
@@ -96,6 +96,10 @@ private static void IOLoop() {
96
!socket.isOutputShutdown() &&
97
socket.isConnected() && socket.isBound()) {
98
inputLine = receiveMessage();
99
+ if (inputLine == null) {
100
+ // End of stream reached.
101
+ break;
102
+ }
103
nrInputLines++;
104
if (debugViewNetworkTraffic) {
105
System.out.println("(c->S," + nrInputLines + ")" + inputLine);
0 commit comments