Removing debugging echo

Updating Tests
This commit is contained in:
Philipp Holzer 2018-10-06 19:11:00 +02:00
parent 31148e25cf
commit a2fb49a2b4
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
5 changed files with 13 additions and 18 deletions

View file

@ -87,10 +87,6 @@ class Mode
*/
public function has($mode)
{
echo "mode: " . $this->mode . " with " . $mode;
echo "value: " . ($this->mode & $mode);
return ($this->mode & $mode) > 0;
}