(String data)
| 107 | } |
| 108 | |
| 109 | public void send(String data) throws IOException { |
| 110 | synchronized (outStream) { |
| 111 | StaticData.getInstance().updateTrafficOut(); |
| 112 | outStream.write(data.getBytes("UTF-8")); |
| 113 | setSent(bytesSent + data.length()); |
| 114 | |
| 115 | outStream.flush(); |
| 116 | updateTraffic(); |
| 117 | } |
| 118 | if (StaticData.XmlDebug) { |
| 119 | System.out.println(">> " + data); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | int length; |
| 124 | int pbyte; |
nothing calls this directly
no test coverage detected