You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jk...@apache.org on 2014/03/22 04:29:05 UTC

svn commit: r1580141 - /opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/perceptron/SuffixSensitivePerceptronModelWriter.java

Author: jkosin
Date: Sat Mar 22 03:29:05 2014
New Revision: 1580141

URL: http://svn.apache.org/r1580141
Log:
OPENNLP-669 Fixed lists <li> and replaced < and > with &lt; and &gt;.

Modified:
    opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/perceptron/SuffixSensitivePerceptronModelWriter.java

Modified: opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/perceptron/SuffixSensitivePerceptronModelWriter.java
URL: http://svn.apache.org/viewvc/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/perceptron/SuffixSensitivePerceptronModelWriter.java?rev=1580141&r1=1580140&r2=1580141&view=diff
==============================================================================
--- opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/perceptron/SuffixSensitivePerceptronModelWriter.java (original)
+++ opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/perceptron/SuffixSensitivePerceptronModelWriter.java Sat Mar 22 03:29:05 2014
@@ -36,9 +36,11 @@ import opennlp.tools.ml.model.AbstractMo
  * appropriate GISModelWriter depending on the filename's suffixes.
  *
  * <p>The following assumption are made about suffixes:
- *    <li>.gz  --> the file is gzipped (must be the last suffix)
- *    <li>.txt --> the file is plain text
- *    <li>.bin --> the file is binary
+ * <ul>
+ *    <li>.gz  --&gt; the file is gzipped (must be the last suffix)
+ *    <li>.txt --&gt; the file is plain text
+ *    <li>.bin --&gt; the file is binary
+ * </ul>
  */
 public class SuffixSensitivePerceptronModelWriter extends PerceptronModelWriter {
     private final AbstractModelWriter suffixAppropriateWriter;