diff options
-rw-r--r-- | auth/ssh.php | 4 | ||||
-rw-r--r-- | auth/telnet.php | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/auth/ssh.php b/auth/ssh.php index 9d3506b..55f6e8a 100644 --- a/auth/ssh.php +++ b/auth/ssh.php @@ -98,10 +98,6 @@ class SSH extends Authentication { $this->send_command('exit'); $this->connection = null; } - - public function __destruct() { - parent::__destruct(); - } } // End of ssh.php diff --git a/auth/telnet.php b/auth/telnet.php index ce758f3..d2b084a 100644 --- a/auth/telnet.php +++ b/auth/telnet.php @@ -63,10 +63,6 @@ class Telnet extends Authentication { fclose($this->connection); $this->connection = null; } - - public function __destruct() { - parent::__destruct(); - } } // End of telnet.php |