You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jo...@apache.org on 2011/05/31 10:43:15 UTC

svn commit: r1129574 - /incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/POSTaggerTrainerTool.java

Author: joern
Date: Tue May 31 08:43:15 2011
New Revision: 1129574

URL: http://svn.apache.org/viewvc?rev=1129574&view=rev
Log:
OPENNLP-193 Added note about the issue

Modified:
    incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/POSTaggerTrainerTool.java

Modified: incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/POSTaggerTrainerTool.java
URL: http://svn.apache.org/viewvc/incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/POSTaggerTrainerTool.java?rev=1129574&r1=1129573&r2=1129574&view=diff
==============================================================================
--- incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/POSTaggerTrainerTool.java (original)
+++ incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/POSTaggerTrainerTool.java Tue May 31 08:43:15 2011
@@ -96,6 +96,7 @@ public final class POSTaggerTrainerTool 
       // TODO: Move to util method ...
       POSDictionary tagdict = null;
       if (parameters.getDictionaryPath() != null) {
+        // TODO: Should re-factored as described in OPENNLP-193
         tagdict = new POSDictionary(parameters.getDictionaryPath());
       }