We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 921a93e commit a92de0dCopy full SHA for a92de0d
mode/src/processing/mode/android/RedirectStreamHandler.java
@@ -8,7 +8,7 @@
8
9
10
public class RedirectStreamHandler extends Thread {
11
- // Streams to redirect from and to
+ // Streams Redirection- from and to
12
private final InputStream input;
13
private final PrintWriter output;
14
@@ -24,11 +24,11 @@ public void run() {
24
BufferedReader reader = new BufferedReader(new InputStreamReader(input));
25
String line;
26
while ((line = reader.readLine()) != null) {
27
+ // print to output line by line
28
output.println(line);
29
}
- } catch (IOException ioe) {
30
- // OK to ignore...
31
- System.out.println("Level.WARNING____I/O Redirection failure: "+ ioe.toString());
+ } catch (IOException ioException) {
+ System.out.println("I/O Redirection failure: "+ ioException.toString());
32
33
34
0 commit comments