Removed unused add/remove error-event code.

This commit is contained in:
Jari Sundell
2026-07-06 20:05:20 +02:00
committed by GitHub
parent fa351c017d
commit ea2d22cb87
6 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -22,8 +22,8 @@ public:
const char* type_name() const override { return "scgi-task"; }
bool is_open() const { return m_fileDesc != -1; }
bool is_available() const { return m_fileDesc == -1; }
bool is_open() const { return file_descriptor() != -1; }
bool is_available() const { return file_descriptor() == -1; }
void open(SCgi* parent, int fd);
void cancel_open();