diff --git a/CHANGELOG.md b/CHANGELOG.md index 30138bd..c8f1fcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log All notable changes to this project will be documented in this file. +## [0.1.1] - 2017-02-06 +### Removed +- Debug Code + ## [0.1.0] - 2017-02-06 - First Release \ No newline at end of file diff --git a/src/StanfordTagger/CRFClassifier.php b/src/StanfordTagger/CRFClassifier.php index afd77fd..d6be59b 100644 --- a/src/StanfordTagger/CRFClassifier.php +++ b/src/StanfordTagger/CRFClassifier.php @@ -98,8 +98,6 @@ public function tag($str) } } - $tmpf = $this->getTmpFile($str); - $cmd = escapeshellcmd( $this->getJavaPath() . ' -mx' . $this->getMaxMemoryUsage() @@ -109,8 +107,6 @@ public function tag($str) . ' -outputFormat ' . $this->getOutputFormat() ); - echo $cmd, PHP_EOL; - $descriptorspec = [ 0 => ["pipe", "r"], 1 => ["pipe", "w"], diff --git a/src/StanfordTagger/POSTagger.php b/src/StanfordTagger/POSTagger.php index 3f7cb00..38b02fd 100644 --- a/src/StanfordTagger/POSTagger.php +++ b/src/StanfordTagger/POSTagger.php @@ -105,8 +105,6 @@ public function tag(string $str) } } - $tmpf = $this->getTmpFile($str); - $cmd = escapeshellcmd( $this->getJavaPath() . ' -mx' . $this->getMaxMemoryUsage() @@ -117,8 +115,6 @@ public function tag(string $str) . ' -tagSeparator ' . $this->getSeparator() ); - echo $cmd, PHP_EOL; - $descriptorspec = [ 0 => ["pipe", "r"], 1 => ["pipe", "w"],