Author: tommaso
Date: Wed Aug 12 13:41:32 2015
New Revision: 1695515
URL: http://svn.apache.org/r1695515
Log:
OPENNLP-777 - fixed javadoc causing failures with java8
Modified:
opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/naivebayes/NaiveBayesModelReader.java
opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/naivebayes/NaiveBayesModelWriter.java
Modified:
opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/naivebayes/NaiveBayesModelReader.java
URL:
http://svn.apache.org/viewvc/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/naivebayes/NaiveBayesModelReader.java?rev=1695515&r1=1695514&r2=1695515&view=diff
==============================================================================
---
opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/naivebayes/NaiveBayesModelReader.java
(original)
+++
opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/naivebayes/NaiveBayesModelReader.java
Wed Aug 12 13:41:32 2015
@@ -43,7 +43,7 @@ public class NaiveBayesModelReader exten
/**
* Retrieve a model from disk. It assumes that models are saved in the
* following sequence:
- * <p/>
+ *
* <br>NaiveBayes (model type identifier)
* <br>1. # of parameters (int)
* <br>2. # of outcomes (int)
@@ -53,7 +53,7 @@ public class NaiveBayesModelReader exten
* <br> [# of predicates for which outcome pattern is true] [outcome
pattern]
* <br>4. # of predicates (int)
* <br> * list of predicate names (String)
- * <p/>
+ *
* <p>If you are creating a reader for a format which won't work with this
* (perhaps a database or xml file), override this method and ignore the
* other methods provided in this abstract class.
Modified:
opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/naivebayes/NaiveBayesModelWriter.java
URL:
http://svn.apache.org/viewvc/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/naivebayes/NaiveBayesModelWriter.java?rev=1695515&r1=1695514&r2=1695515&view=diff
==============================================================================
---
opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/naivebayes/NaiveBayesModelWriter.java
(original)
+++
opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/naivebayes/NaiveBayesModelWriter.java
Wed Aug 12 13:41:32 2015
@@ -114,7 +114,7 @@ public abstract class NaiveBayesModelWri
/**
* Writes the model to disk, using the <code>writeX()</code> methods
* provided by extending classes.
- * <p/>
+ *
* <p>If you wish to create a NaiveBayesModelWriter which uses a different
* structure, it will be necessary to override the persist method in
* addition to implementing the <code>writeX()</code> methods.