()
| 146 | private SocketOutputStream outputStream; |
| 147 | |
| 148 | public Socket() throws IOException { |
| 149 | Socket.init(); |
| 150 | sock = create(); |
| 151 | inputStream = new SocketInputStream(); |
| 152 | outputStream = new SocketOutputStream(); |
| 153 | } |
| 154 | |
| 155 | public SocketInputStream getInputStream() { |
| 156 | return inputStream; |
nothing calls this directly
no test coverage detected