(self)
| 191 | super().__init__(*args, **kwargs) |
| 192 | |
| 193 | def do_GET(self): |
| 194 | self.send_response(200) |
| 195 | self.send_header("Content-type", "application/octet-stream") |
| 196 | self.end_headers() |
| 197 | |
| 198 | self.wfile.write(self.__java_class.raw) |
| 199 | |
| 200 | def log_message(self, format, *args): |
| 201 | http_logger.info(f"Request from {self.client_address} to {self.path}") |
nothing calls this directly
no outgoing calls
no test coverage detected