()
| 80 | } |
| 81 | |
| 82 | public void run() |
| 83 | { |
| 84 | try |
| 85 | { |
| 86 | InputStream in = client.getInputStream(); |
| 87 | PrintStream out = new PrintStream(client.getOutputStream()); |
| 88 | Interpreter i = new Interpreter( |
| 89 | new InputStreamReader(in), out, out, true, globalNameSpace); |
| 90 | i.setExitOnEOF( false ); // don't exit interp |
| 91 | i.run(); |
| 92 | } |
| 93 | catch(IOException e) { System.out.println(e); } |
| 94 | } |
| 95 | } |
| 96 |
nothing calls this directly
no test coverage detected