CommandReader: remove unnecessary setClassLoader() call

this is already handled in start() anyway.
This commit is contained in:
Dylan K. Taylor 2018-05-12 12:47:28 +01:00
parent 889222e9c5
commit edaef588ab

View File

@ -49,8 +49,6 @@ class CommandReader extends Thread{
if(extension_loaded("readline") and !isset($opts["disable-readline"]) and !$this->isPipe(STDIN)){
$this->type = self::TYPE_READLINE;
}
$this->setClassLoader();
}
public function shutdown(){