(byte type, byte status, String data)
| 188 | |
| 189 | // 工具方法:创建响应 |
| 190 | public static Response createResponse(byte type, byte status, String data) { |
| 191 | return new Response(type, status, data.getBytes(StandardCharsets.UTF_8)); |
| 192 | } |
| 193 | } |
nothing calls this directly
no outgoing calls
no test coverage detected