You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by to...@apache.org on 2014/08/22 23:16:50 UTC

svn commit: r1619933 - /lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/SimpleNaiveBayesClassifier.java

Author: tommaso
Date: Fri Aug 22 21:16:49 2014
New Revision: 1619933

URL: http://svn.apache.org/r1619933
Log:
LUCENE-5699 - fixed javadoc

Modified:
    lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/SimpleNaiveBayesClassifier.java

Modified: lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/SimpleNaiveBayesClassifier.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/SimpleNaiveBayesClassifier.java?rev=1619933&r1=1619932&r2=1619933&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/SimpleNaiveBayesClassifier.java (original)
+++ lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/SimpleNaiveBayesClassifier.java Fri Aug 22 21:16:49 2014
@@ -221,7 +221,7 @@ public class SimpleNaiveBayesClassifier 
    * tokenize a <code>String</code> on this classifier's text fields and analyzer
    *
    * @param doc the <code>String</code> representing an input text (to be classified)
-   * @return
+   * @return a <code>String</code> array of the resulting tokens
    * @throws IOException
    */
   protected String[] tokenizeDoc(String doc) throws IOException {