Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Offset.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Offset.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Offset.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Offset.java Mon Jul 
17 08:24:24 2017
@@ -25,18 +25,18 @@ import org.apache.poi.ss.formula.eval.Op
 import org.apache.poi.ss.formula.eval.RefEval;
 import org.apache.poi.ss.formula.eval.ValueEval;
 /**
- * Implementation for Excel function OFFSET()<p/>
+ * Implementation for Excel function OFFSET()<p>
  *
  * OFFSET returns an area reference that is a specified number of rows and 
columns from a
- * reference cell or area.<p/>
+ * reference cell or area.<p>
  *
- * <b>Syntax</b>:<br/>
- * <b>OFFSET</b>(<b>reference</b>, <b>rows</b>, <b>cols</b>, height, width)<p/>
- * <b>reference</b> is the base reference.<br/>
- * <b>rows</b> is the number of rows up or down from the base reference.<br/>
- * <b>cols</b> is the number of columns left or right from the base 
reference.<br/>
- * <b>height</b> (default same height as base reference) is the row count for 
the returned area reference.<br/>
- * <b>width</b> (default same width as base reference) is the column count for 
the returned area reference.<br/>
+ * <b>Syntax</b>:<br>
+ * <b>OFFSET</b>(<b>reference</b>, <b>rows</b>, <b>cols</b>, height, width)<p>
+ * <b>reference</b> is the base reference.<br>
+ * <b>rows</b> is the number of rows up or down from the base reference.<br>
+ * <b>cols</b> is the number of columns left or right from the base 
reference.<br>
+ * <b>height</b> (default same height as base reference) is the row count for 
the returned area reference.<br>
+ * <b>width</b> (default same width as base reference) is the column count for 
the returned area reference.<br>
  *
  * @author Josh Micich
  */
@@ -71,11 +71,11 @@ public final class Offset implements Fun
                        return (short) (_offset + _length - 1);
                }
                /**
-                * Moves the range by the specified translation amount.<p/>
+                * Moves the range by the specified translation amount.<p>
                 *
                 * This method also 'normalises' the range: Excel specifies 
that the width and height
                 * parameters (length field here) cannot be negative.  However, 
OFFSET() does produce
-                * sensible results in these cases.  That behavior is 
replicated here. <p/>
+                * sensible results in these cases.  That behavior is 
replicated here. <p>
                 *
                 * @param translationAmount may be zero negative or positive
                 *

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Quotient.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Quotient.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Quotient.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Quotient.java Mon 
Jul 17 08:24:24 2017
@@ -23,16 +23,16 @@ import org.apache.poi.ss.formula.eval.Va
 import org.apache.poi.ss.formula.eval.*;
 
 /**
- * <p>Implementation for Excel QUOTIENT () function.<p/>
+ * <p>Implementation for Excel QUOTIENT () function.<p>
+ * <p>
+ * <b>Syntax</b>:<br> <b>QUOTIENT</b>(<b>Numerator</b>,<b>Denominator</b>)<br>
  * <p>
- * <b>Syntax</b>:<br/> 
<b>QUOTIENT</b>(<b>Numerator</b>,<b>Denominator</b>)<br/>
- * <p/>
  * <p>
  * Numerator     is the dividend.
  * Denominator     is the divisor.
  *
  * Returns the integer portion of a division. Use this function when you want 
to discard the remainder of a division.
- * <p/>
+ * <p>
  *
  * If either enumerator/denominator is non numeric, QUOTIENT returns the 
#VALUE! error value.
  * If denominator is equals to zero, QUOTIENT returns the #DIV/0! error value.

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Replace.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Replace.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Replace.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Replace.java Mon Jul 
17 08:24:24 2017
@@ -23,17 +23,17 @@ import org.apache.poi.ss.formula.eval.St
 import org.apache.poi.ss.formula.eval.ValueEval;
 
 /**
- * An implementation of the Excel REPLACE() function:<p/>
+ * An implementation of the Excel REPLACE() function:<p>
  * Replaces part of a text string based on the number of characters
- * you specify, with another text string.<br/>
+ * you specify, with another text string.<br>
  *
- * <b>Syntax</b>:<br/>
- * <b>REPLACE</b>(<b>oldText</b>, <b>startNum</b>, <b>numChars</b>, 
<b>newText</b>)<p/>
+ * <b>Syntax</b>:<br>
+ * <b>REPLACE</b>(<b>oldText</b>, <b>startNum</b>, <b>numChars</b>, 
<b>newText</b>)<p>
  *
- * <b>oldText</b>  The text string containing characters to replace<br/>
- * <b>startNum</b> The position of the first character to replace 
(1-based)<br/>
- * <b>numChars</b> The number of characters to replace<br/>
- * <b>newText</b> The new text value to replace the removed section<br/>
+ * <b>oldText</b>  The text string containing characters to replace<br>
+ * <b>startNum</b> The position of the first character to replace (1-based)<br>
+ * <b>numChars</b> The number of characters to replace<br>
+ * <b>newText</b> The new text value to replace the removed section<br>
  *
  * @author Manda Wilson &lt; wilson at c bio dot msk cc dot org &gt;
  */

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Rept.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Rept.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Rept.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Rept.java Mon Jul 17 
08:24:24 2017
@@ -24,10 +24,10 @@ import org.apache.poi.ss.formula.eval.St
 import org.apache.poi.ss.formula.eval.ValueEval;
 
 /**
- * Implementation for Excel REPT () function.<p/>
- * <p/>
- * <b>Syntax</b>:<br/> <b>REPT  </b>(<b>text</b>,<b>number_times</b> )<br/>
- * <p/>
+ * Implementation for Excel REPT () function.<p>
+ * <p>
+ * <b>Syntax</b>:<br> <b>REPT  </b>(<b>text</b>,<b>number_times</b> )<br>
+ * <p>
  * Repeats text a given number of times. Use REPT to fill a cell with a number 
of instances of a text string.
  *
  * text : text The text that you want to repeat.

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Roman.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Roman.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Roman.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Roman.java Mon Jul 
17 08:24:24 2017
@@ -24,13 +24,13 @@ import org.apache.poi.ss.formula.eval.St
 import org.apache.poi.ss.formula.eval.ValueEval;
 
 /**
- * Implementation for Excel WeekNum() function.<p/>
- * <p/>
- * <b>Syntax</b>:<br/> <b>WeekNum  
</b>(<b>Serial_num</b>,<b>Return_type</b>)<br/>
- * <p/>
+ * Implementation for Excel WeekNum() function.<p>
+ * <p>
+ * <b>Syntax</b>:<br> <b>WeekNum  
</b>(<b>Serial_num</b>,<b>Return_type</b>)<br>
+ * <p>
  * Returns a number that indicates where the week falls numerically within a 
year.
- * <p/>
- * <p/>
+ * <p>
+ * <p>
  * Serial_num     is a date within the week. Dates should be entered by using 
the DATE function,
  * or as results of other formulas or functions. For example, use 
DATE(2008,5,23)
  * for the 23rd day of May, 2008. Problems can occur if dates are entered as 
text.

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Slope.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Slope.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Slope.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Slope.java Mon Jul 
17 08:24:24 2017
@@ -23,12 +23,12 @@ import org.apache.poi.ss.formula.eval.Va
 import org.apache.poi.ss.formula.functions.LinearRegressionFunction.FUNCTION;
 
 /**
- * Implementation of Excel function SLOPE()<p/>
+ * Implementation of Excel function SLOPE()<p>
  *
- * Calculates the SLOPE of the linear regression line that is used to predict 
y values from x values<br/>
+ * Calculates the SLOPE of the linear regression line that is used to predict 
y values from x values<br>
  * (http://introcs.cs.princeton.edu/java/97data/LinearRegression.java.html)
- * <b>Syntax</b>:<br/>
- * <b>SLOPE</b>(<b>arrayX</b>, <b>arrayY</b>)<p/>
+ * <b>Syntax</b>:<br>
+ * <b>SLOPE</b>(<b>arrayX</b>, <b>arrayY</b>)<p>
  *
  *
  * @author Johan Karlsteen

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/StatsLib.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/StatsLib.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/StatsLib.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/StatsLib.java Mon 
Jul 17 08:24:24 2017
@@ -116,7 +116,7 @@ final class StatsLib {
      * returns the kth largest element in the array. Duplicates
      * are considered as distinct values. Hence, eg.
      * for array {1,2,4,3,3} & k=2, returned value is 3.
-     * <br/>
+     * <br>
      * k <= 0 & k >= v.length and null or empty arrays
      * will result in return value Double.NaN
      */
@@ -134,7 +134,7 @@ final class StatsLib {
      * returns the kth smallest element in the array. Duplicates
      * are considered as distinct values. Hence, eg.
      * for array {1,1,2,4,3,3} & k=2, returned value is 1.
-     * <br/>
+     * <br>
      * k <= 0 & k >= v.length or null array or empty array
      * will result in return value Double.NaN
      * @param v

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Substitute.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Substitute.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Substitute.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Substitute.java Mon 
Jul 17 08:24:24 2017
@@ -23,7 +23,7 @@ import org.apache.poi.ss.formula.eval.St
 import org.apache.poi.ss.formula.eval.ValueEval;
 
 /**
- * An implementation of the SUBSTITUTE function:<P/>
+ * An implementation of the SUBSTITUTE function:<p>
  * Substitutes text in a text string with new text, some number of times.
  * @author Manda Wilson &lt; wilson at c bio dot msk cc dot org &gt;
  */

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Subtotal.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Subtotal.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Subtotal.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Subtotal.java Mon 
Jul 17 08:24:24 2017
@@ -35,12 +35,12 @@ import java.util.List;
 /**
  * Implementation for the Excel function SUBTOTAL<p>
  *
- * <b>Syntax :</b> <br/>
- *  SUBTOTAL ( <b>functionCode</b>, <b>ref1</b>, ref2 ... ) <br/>
+ * <b>Syntax :</b> <br>
+ *  SUBTOTAL ( <b>functionCode</b>, <b>ref1</b>, ref2 ... ) <br>
  *    <table border="1" cellpadding="1" cellspacing="0" summary="Parameter 
descriptions">
  *      <tr><td><b>functionCode</b></td><td>(1-11) Selects the underlying 
aggregate function to be used (see table below)</td></tr>
  *      <tr><td><b>ref1</b>, ref2 ...</td><td>Arguments to be passed to the 
underlying aggregate function</td></tr>
- *    </table><br/>
+ *    </table><br>
  * </p>
  *
  *  <table border="1" cellpadding="1" cellspacing="0" summary="Parameter 
descriptions">
@@ -57,10 +57,10 @@ import java.util.List;
  *      <tr align='center'><td>10</td><td>VAR *</td></tr>
  *      <tr align='center'><td>11</td><td>VARP *</td></tr>
  *      <tr align='center'><td>101-111</td><td>*</td></tr>
- *  </table><br/>
+ *  </table><br>
  * * Not implemented in POI yet. Functions 101-111 are the same as functions 
1-11 but with
  * the option 'ignore hidden values'.
- * <p/>
+ * <p>
  *
  * @author Paul Tomlin &lt; pault at bulk sms dot com &gt;
  */

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumif.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumif.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumif.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumif.java Mon Jul 
17 08:24:24 2017
@@ -28,13 +28,13 @@ import org.apache.poi.ss.formula.functio
 /**
  * Implementation for the Excel function SUMIF<p>
  *
- * Syntax : <br/>
- *  SUMIF ( <b>range</b>, <b>criteria</b>, sum_range ) <br/>
+ * Syntax : <br>
+ *  SUMIF ( <b>range</b>, <b>criteria</b>, sum_range ) <br>
  *    <table border="0" cellpadding="1" cellspacing="0" summary="Parameter 
descriptions">
  *      <tr><th>range</th><td>The range over which criteria is applied.  Also 
used for addend values when the third parameter is not present</td></tr>
  *      <tr><th>criteria</th><td>The value or expression used to filter rows 
from <b>range</b></td></tr>
  *      <tr><th>sum_range</th><td>Locates the top-left corner of the 
corresponding range of addends - values to be added (after being selected by 
the criteria)</td></tr>
- *    </table><br/>
+ *    </table><br>
  * </p>
  * @author Josh Micich
  */

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumifs.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumifs.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumifs.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumifs.java Mon Jul 
17 08:24:24 2017
@@ -22,9 +22,9 @@ package org.apache.poi.ss.formula.functi
 /**
  * Implementation for the Excel function SUMIFS<p>
  *
- * Syntax : <br/>
+ * Syntax : <br>
  *  SUMIFS ( <b>sum_range</b>, <b>criteria_range1</b>, <b>criteria1</>,
- *  [<b>criteria_range2</b>,  <b>criteria2</b>], ...) <br/>
+ *  [<b>criteria_range2</b>,  <b>criteria2</b>], ...) <br>
  *    <ul>
  *      <li><b>sum_range</b> Required. One or more cells to sum, including 
numbers or names, ranges,
  *      or cell references that contain numbers. Blank and text values are 
ignored.</li>

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumproduct.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumproduct.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumproduct.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumproduct.java Mon 
Jul 17 08:24:24 2017
@@ -32,16 +32,16 @@ import org.apache.poi.ss.formula.eval.Va
 /**
  * Implementation for the Excel function SUMPRODUCT<p>
  *
- * Syntax : <br/>
+ * Syntax : <br>
  *  SUMPRODUCT ( array1[, array2[, array3[, ...]]])
  *    <table border="0" cellpadding="1" cellspacing="0" summary="Parameter 
descriptions">
  *      <tr><th>array1, ... arrayN&nbsp;&nbsp;</th><td>typically area 
references,
  *      possibly cell references or scalar values</td></tr>
- *    </table><br/>
+ *    </table><br>
  *
  * Let A<b>n</b><sub>(<b>i</b>,<b>j</b>)</sub> represent the element in the 
<b>i</b>th row <b>j</b>th column
- * of the <b>n</b>th array<br/>
- * Assuming each array has the same dimensions (W, H), the result is defined 
as:<br/>
+ * of the <b>n</b>th array<br>
+ * Assuming each array has the same dimensions (W, H), the result is defined 
as:<br>
  * SUMPRODUCT = &Sigma;<sub><b>i</b>: 1..H</sub> &nbsp;
  *     (&nbsp; &Sigma;<sub><b>j</b>: 1..W</sub> &nbsp;
  *       (&nbsp; &Pi;<sub><b>n</b>: 1..N</sub>
@@ -196,7 +196,7 @@ public final class Sumproduct implements
         * Determines a <code>double</code> value for the specified 
<code>ValueEval</code>.
         * @param isScalarProduct <code>false</code> for SUMPRODUCTs over area 
refs.
         * @throws EvaluationException if <code>ve</code> represents an error 
value.
-        * <p/>
+        * <p>
         * Note - string values and empty cells are interpreted differently 
depending on
         * <code>isScalarProduct</code>.  For scalar products, if any term is 
blank or a string, the
         * error (#VALUE!) is raised.  For area (sum)products, if any term is 
blank or a string, the

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumx2my2.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumx2my2.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumx2my2.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumx2my2.java Mon 
Jul 17 08:24:24 2017
@@ -19,11 +19,11 @@ package org.apache.poi.ss.formula.functi
 
 
 /**
- * Implementation of Excel function SUMX2MY2()<p/>
+ * Implementation of Excel function SUMX2MY2()<p>
  *
- * Calculates the sum of differences of squares in two arrays of the same 
size.<br/>
- * <b>Syntax</b>:<br/>
- * <b>SUMX2MY2</b>(<b>arrayX</b>, <b>arrayY</b>)<p/>
+ * Calculates the sum of differences of squares in two arrays of the same 
size.<br>
+ * <b>Syntax</b>:<br>
+ * <b>SUMX2MY2</b>(<b>arrayX</b>, <b>arrayY</b>)<p>
  *
  * result = &Sigma;<sub>i: 
0..n</sub>(x<sub>i</sub><sup>2</sup>-y<sub>i</sub><sup>2</sup>)
  *

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumx2py2.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumx2py2.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumx2py2.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumx2py2.java Mon 
Jul 17 08:24:24 2017
@@ -19,11 +19,11 @@ package org.apache.poi.ss.formula.functi
 
 
 /**
- * Implementation of Excel function SUMX2PY2()<p/>
+ * Implementation of Excel function SUMX2PY2()<p>
  *
- * Calculates the sum of squares in two arrays of the same size.<br/>
- * <b>Syntax</b>:<br/>
- * <b>SUMX2PY2</b>(<b>arrayX</b>, <b>arrayY</b>)<p/>
+ * Calculates the sum of squares in two arrays of the same size.<br>
+ * <b>Syntax</b>:<br>
+ * <b>SUMX2PY2</b>(<b>arrayX</b>, <b>arrayY</b>)<p>
  *
  * result = &Sigma;<sub>i: 
0..n</sub>(x<sub>i</sub><sup>2</sup>+y<sub>i</sub><sup>2</sup>)
  *

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumxmy2.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumxmy2.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumxmy2.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Sumxmy2.java Mon Jul 
17 08:24:24 2017
@@ -18,11 +18,11 @@
 package org.apache.poi.ss.formula.functions;
 
 /**
- * Implementation of Excel function SUMXMY2()<p/>
+ * Implementation of Excel function SUMXMY2()<p>
  *
- * Calculates the sum of squares of differences between two arrays of the same 
size.<br/>
- * <b>Syntax</b>:<br/>
- * <b>SUMXMY2</b>(<b>arrayX</b>, <b>arrayY</b>)<p/>
+ * Calculates the sum of squares of differences between two arrays of the same 
size.<br>
+ * <b>Syntax</b>:<br>
+ * <b>SUMXMY2</b>(<b>arrayX</b>, <b>arrayY</b>)<p>
  *
  * result = &Sigma;<sub>i: 0..n</sub>(x<sub>i</sub>-y<sub>i</sub>)<sup>2</sup>
  *

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/T.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/T.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/T.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/T.java Mon Jul 17 
08:24:24 2017
@@ -25,7 +25,7 @@ import org.apache.poi.ss.formula.eval.Va
 
 /**
  * Implementation of Excel T() function
- * <p/>
+ * <p>
  * If the argument is a text or error value it is returned unmodified.  All 
other argument types
  * cause an empty string result.  If the argument is an area, the first 
(top-left) cell is used
  * (regardless of the coordinates of the evaluating formula cell).

Modified: 
poi/trunk/src/java/org/apache/poi/ss/formula/functions/TextFunction.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/TextFunction.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/TextFunction.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/TextFunction.java 
Mon Jul 17 08:24:24 2017
@@ -182,12 +182,12 @@ public abstract class TextFunction imple
     };
 
     /**
-        * An implementation of the MID function<br/>
+        * An implementation of the MID function<br>
         * MID returns a specific number of
-        * characters from a text string, starting at the specified 
position.<p/>
+        * characters from a text string, starting at the specified position.<p>
         *
-        * <b>Syntax<b>:<br/> <b>MID</b>(<b>text</b>, <b>start_num</b>,
-        * <b>num_chars</b>)<br/>
+        * <b>Syntax<b>:<br> <b>MID</b>(<b>text</b>, <b>start_num</b>,
+        * <b>num_chars</b>)<br>
         *
         * Author: Manda Wilson &lt; wilson at c bio dot msk cc dot org &gt;
         */
@@ -294,14 +294,14 @@ public abstract class TextFunction imple
        };
 
        /**
-        * An implementation of the TEXT function<br/>
+        * An implementation of the TEXT function<br>
         * TEXT returns a number value formatted with the given number 
formatting string. 
         * This function is not a complete implementation of the Excel 
function, but
         *  handles most of the common cases. All work is passed down to 
         *  {@link DataFormatter} to be done, as this works much the same as the
         *  display focused work that that does. 
         *
-        * <b>Syntax<b>:<br/> <b>TEXT</b>(<b>value</b>, <b>format_text</b>)<br/>
+        * <b>Syntax<b>:<br> <b>TEXT</b>(<b>value</b>, <b>format_text</b>)<br>
         */
        public static final Function TEXT = new Fixed2ArgFunction() {
 
@@ -371,24 +371,24 @@ public abstract class TextFunction imple
                }
        }
        /**
-        * Implementation of the FIND() function.<p/>
+        * Implementation of the FIND() function.<p>
         *
-        * <b>Syntax</b>:<br/>
-        * <b>FIND</b>(<b>find_text</b>, <b>within_text</b>, start_num)<p/>
+        * <b>Syntax</b>:<br>
+        * <b>FIND</b>(<b>find_text</b>, <b>within_text</b>, start_num)<p>
         *
         * FIND returns the character position of the first (case sensitive) 
occurrence of
         * <tt>find_text</tt> inside <tt>within_text</tt>.  The third parameter,
         * <tt>start_num</tt>, is optional (default=1) and specifies where to 
start searching
-        * from.  Character positions are 1-based.<p/>
+        * from.  Character positions are 1-based.<p>
         *
         * Author: Torstein Tauno Svendsen (tors...@officenet.no)
         */
        public static final Function FIND = new SearchFind(true);
        /**
-        * Implementation of the FIND() function.<p/>
+        * Implementation of the FIND() function.<p>
         *
-        * <b>Syntax</b>:<br/>
-        * <b>SEARCH</b>(<b>find_text</b>, <b>within_text</b>, start_num)<p/>
+        * <b>Syntax</b>:<br>
+        * <b>SEARCH</b>(<b>find_text</b>, <b>within_text</b>, start_num)<p>
         *
         * SEARCH is a case-insensitive version of FIND()
         */

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Today.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Today.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Today.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Today.java Mon Jul 
17 08:24:24 2017
@@ -25,7 +25,7 @@ import org.apache.poi.ss.usermodel.DateU
 import org.apache.poi.util.LocaleUtil;
 
 /**
- * Implementation of Excel TODAY() Function<br/>
+ * Implementation of Excel TODAY() Function<br>
  */
 public final class Today extends Fixed0ArgFunction {
        public ValueEval evaluate(int srcRowIndex, int srcColumnIndex) {

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Value.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Value.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Value.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Value.java Mon Jul 
17 08:24:24 2017
@@ -24,9 +24,9 @@ import org.apache.poi.ss.formula.eval.Op
 import org.apache.poi.ss.formula.eval.ValueEval;
 
 /**
- * Implementation for Excel VALUE() function.<p/>
+ * Implementation for Excel VALUE() function.<p>
  *
- * <b>Syntax</b>:<br/> <b>VALUE</b>(<b>text</b>)<br/>
+ * <b>Syntax</b>:<br> <b>VALUE</b>(<b>text</b>)<br>
  *
  * Converts the text argument to a number. Leading and/or trailing whitespace 
is
  * ignored. Currency symbols and thousands separators are stripped out.

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/Vlookup.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/Vlookup.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/Vlookup.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/Vlookup.java Mon Jul 
17 08:24:24 2017
@@ -24,18 +24,18 @@ import org.apache.poi.ss.formula.eval.Va
 import org.apache.poi.ss.formula.functions.LookupUtils.ValueVector;
 import org.apache.poi.ss.formula.TwoDEval;
 /**
- * Implementation of the VLOOKUP() function.<p/>
+ * Implementation of the VLOOKUP() function.<p>
  *
- * VLOOKUP finds a row in a lookup table by the first column value and returns 
the value from another column.<br/>
+ * VLOOKUP finds a row in a lookup table by the first column value and returns 
the value from another column.<br>
  *
- * <b>Syntax</b>:<br/>
- * <b>VLOOKUP</b>(<b>lookup_value</b>, <b>table_array</b>, 
<b>col_index_num</b>, range_lookup)<p/>
+ * <b>Syntax</b>:<br>
+ * <b>VLOOKUP</b>(<b>lookup_value</b>, <b>table_array</b>, 
<b>col_index_num</b>, range_lookup)<p>
  *
- * <b>lookup_value</b>  The value to be found in the first column of the table 
array.<br/>
- * <b>table_array</b> An area reference for the lookup data. <br/>
- * <b>col_index_num</b> a 1 based index specifying which column value of the 
lookup data will be returned.<br/>
+ * <b>lookup_value</b>  The value to be found in the first column of the table 
array.<br>
+ * <b>table_array</b> An area reference for the lookup data. <br>
+ * <b>col_index_num</b> a 1 based index specifying which column value of the 
lookup data will be returned.<br>
  * <b>range_lookup</b> If TRUE (default), VLOOKUP finds the largest value less 
than or equal to
- * the lookup_value.  If FALSE, only exact matches will be considered<br/>
+ * the lookup_value.  If FALSE, only exact matches will be considered<br>
  */
 public final class Vlookup extends Var3or4ArgFunction {
        private static final ValueEval DEFAULT_ARG3 = BoolEval.TRUE;

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/functions/WeekNum.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/WeekNum.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/WeekNum.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/WeekNum.java Mon Jul 
17 08:24:24 2017
@@ -29,13 +29,13 @@ import org.apache.poi.ss.usermodel.DateU
 import org.apache.poi.util.LocaleUtil;
 
 /**
- * Implementation for Excel WeekNum() function.<p/>
- * <p/>
- * <b>Syntax</b>:<br/> <b>WeekNum  
</b>(<b>Serial_num</b>,<b>Return_type</b>)<br/>
- * <p/>
+ * Implementation for Excel WeekNum() function.<p>
+ * <p>
+ * <b>Syntax</b>:<br> <b>WeekNum  
</b>(<b>Serial_num</b>,<b>Return_type</b>)<br>
+ * <p>
  * Returns a number that indicates where the week falls numerically within a 
year.
- * <p/>
- * <p/>
+ * <p>
+ * <p>
  * Serial_num     is a date within the week. Dates should be entered by using 
the DATE function,
  * or as results of other formulas or functions. For example, use 
DATE(2008,5,23)
  * for the 23rd day of May, 2008. Problems can occur if dates are entered as 
text.

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/ptg/Ptg.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/ptg/Ptg.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/ptg/Ptg.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/ptg/Ptg.java Mon Jul 17 
08:24:24 2017
@@ -29,7 +29,7 @@ import org.apache.poi.util.LittleEndianO
  * '<b>p</b>arse <b>t</b>hin<b>g</b>'.  Originally, the name referred to the 
single
  * byte identifier at the start of the token, but in POI, <tt>Ptg</tt> 
encapsulates
  * the whole formula token (initial byte + value data).
- * <p/>
+ * <p>
  *
  * <tt>Ptg</tt>s are logically arranged in a tree representing the structure 
of the
  * parsed formula.  However, in BIFF files <tt>Ptg</tt>s are written/read in
@@ -192,7 +192,7 @@ public abstract class Ptg {
        /**
         * Writes the ptgs to the data buffer, starting at the specified offset.
         *
-        * <br/>
+        * <br>
         * The 2 byte encode length field is <b>not</b> written by this method.
         * @return number of bytes written
         */

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/BuiltinFormats.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/BuiltinFormats.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/BuiltinFormats.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/BuiltinFormats.java Mon Jul 
17 08:24:24 2017
@@ -18,48 +18,48 @@ package org.apache.poi.ss.usermodel;
 
 /**
  * Utility to identify built-in formats.  The following is a list of the 
formats as
- * returned by this class.<p/>
- *<p/>
- *       0, "General"<br/>
- *       1, "0"<br/>
- *       2, "0.00"<br/>
- *       3, "#,##0"<br/>
- *       4, "#,##0.00"<br/>
- *       5, "$#,##0_);($#,##0)"<br/>
- *       6, "$#,##0_);[Red]($#,##0)"<br/>
- *       7, "$#,##0.00);($#,##0.00)"<br/>
- *       8, "$#,##0.00_);[Red]($#,##0.00)"<br/>
- *       9, "0%"<br/>
- *       0xa, "0.00%"<br/>
- *       0xb, "0.00E+00"<br/>
- *       0xc, "# ?/?"<br/>
- *       0xd, "# ??/??"<br/>
- *       0xe, "m/d/yy"<br/>
- *       0xf, "d-mmm-yy"<br/>
- *       0x10, "d-mmm"<br/>
- *       0x11, "mmm-yy"<br/>
- *       0x12, "h:mm AM/PM"<br/>
- *       0x13, "h:mm:ss AM/PM"<br/>
- *       0x14, "h:mm"<br/>
- *       0x15, "h:mm:ss"<br/>
- *       0x16, "m/d/yy h:mm"<br/>
- *<p/>
+ * returned by this class.<p>
+ *<p>
+ *       0, "General"<br>
+ *       1, "0"<br>
+ *       2, "0.00"<br>
+ *       3, "#,##0"<br>
+ *       4, "#,##0.00"<br>
+ *       5, "$#,##0_);($#,##0)"<br>
+ *       6, "$#,##0_);[Red]($#,##0)"<br>
+ *       7, "$#,##0.00);($#,##0.00)"<br>
+ *       8, "$#,##0.00_);[Red]($#,##0.00)"<br>
+ *       9, "0%"<br>
+ *       0xa, "0.00%"<br>
+ *       0xb, "0.00E+00"<br>
+ *       0xc, "# ?/?"<br>
+ *       0xd, "# ??/??"<br>
+ *       0xe, "m/d/yy"<br>
+ *       0xf, "d-mmm-yy"<br>
+ *       0x10, "d-mmm"<br>
+ *       0x11, "mmm-yy"<br>
+ *       0x12, "h:mm AM/PM"<br>
+ *       0x13, "h:mm:ss AM/PM"<br>
+ *       0x14, "h:mm"<br>
+ *       0x15, "h:mm:ss"<br>
+ *       0x16, "m/d/yy h:mm"<br>
+ *<p>
  *       // 0x17 - 0x24 reserved for international and undocumented
- *       0x25, "#,##0_);(#,##0)"<br/>
- *       0x26, "#,##0_);[Red](#,##0)"<br/>
- *       0x27, "#,##0.00_);(#,##0.00)"<br/>
- *       0x28, "#,##0.00_);[Red](#,##0.00)"<br/>
- *       0x29, "_(* #,##0_);_(* (#,##0);_(* \"-\"_);_(@_)"<br/>
- *       0x2a, "_($* #,##0_);_($* (#,##0);_($* \"-\"_);_(@_)"<br/>
- *       0x2b, "_(* #,##0.00_);_(* (#,##0.00);_(* \"-\"??_);_(@_)"<br/>
- *       0x2c, "_($* #,##0.00_);_($* (#,##0.00);_($* \"-\"??_);_(@_)"<br/>
- *       0x2d, "mm:ss"<br/>
- *       0x2e, "[h]:mm:ss"<br/>
- *       0x2f, "mm:ss.0"<br/>
- *       0x30, "##0.0E+0"<br/>
- *       0x31, "@" - This is text format.<br/>
- *       0x31  "text" - Alias for "@"<br/>
- * <p/>
+ *       0x25, "#,##0_);(#,##0)"<br>
+ *       0x26, "#,##0_);[Red](#,##0)"<br>
+ *       0x27, "#,##0.00_);(#,##0.00)"<br>
+ *       0x28, "#,##0.00_);[Red](#,##0.00)"<br>
+ *       0x29, "_(* #,##0_);_(* (#,##0);_(* \"-\"_);_(@_)"<br>
+ *       0x2a, "_($* #,##0_);_($* (#,##0);_($* \"-\"_);_(@_)"<br>
+ *       0x2b, "_(* #,##0.00_);_(* (#,##0.00);_(* \"-\"??_);_(@_)"<br>
+ *       0x2c, "_($* #,##0.00_);_($* (#,##0.00);_($* \"-\"??_);_(@_)"<br>
+ *       0x2d, "mm:ss"<br>
+ *       0x2e, "[h]:mm:ss"<br>
+ *       0x2f, "mm:ss.0"<br>
+ *       0x30, "##0.0E+0"<br>
+ *       0x31, "@" - This is text format.<br>
+ *       0x31  "text" - Alias for "@"<br>
+ * <p>
  */
 public final class BuiltinFormats {
        /**
@@ -145,7 +145,7 @@ public final class BuiltinFormats {
        }
 
        /**
-        * Get the format index that matches the given format string.<br/>
+        * Get the format index that matches the given format string.<br>
         * Automatically converts "text" to excel's format string to represent 
text.
         * 
         * @param pFmt string matching a built-in format

Modified: 
poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionFilterType.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionFilterType.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionFilterType.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionFilterType.java Mon 
Jul 17 08:24:24 2017
@@ -23,7 +23,7 @@ package org.apache.poi.ss.usermodel;
  * Used primarily for XSSF conditions, which defines a multitude of additional 
"filter" types
  * for conditional formatting.  HSSF rules will always be null (not a filter 
type) or #FILTER.
  * XSSF conditions will be null (not a filter type) or any value other than 
#FILTER.
- * <p/>
+ * <p>
  * Instance names match the constants from <code>STCfType</code> for 
convenience.
  */
 public enum ConditionFilterType {

Modified: 
poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- 
poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java 
(original)
+++ 
poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java 
Mon Jul 17 08:24:24 2017
@@ -92,11 +92,11 @@ public interface ConditionalFormattingRu
     
     /**
      * This is null if 
-     * <p/>
+     * <p>
      * <code>{@link #getConditionType()} != {@link ConditionType#FILTER}</code>
-     * <p/>
+     * <p>
      * This is always {@link ConditionFilterType#FILTER} for HSSF rules of 
type {@link ConditionType#FILTER}.
-     * <p/>
+     * <p>
      * For XSSF filter rules, this will indicate the specific type of filter.
      * 
      * @return filter type for filter rules, or null if not a filter rule.
@@ -105,11 +105,11 @@ public interface ConditionalFormattingRu
     
     /**
      * This is null if 
-     * <p/>
+     * <p>
      * <code>{@link #getConditionFilterType()} == null</code>
-     * <p/>
+     * <p>
      * This means it is always null for HSSF, which does not define the 
extended condition types.
-     * <p/>
+     * <p>
      * This object contains the additional configuration information for XSSF 
filter conditions.
      * 
      * @return the Filter Configuration Data, or null if there isn't any
@@ -154,13 +154,13 @@ public interface ConditionalFormattingRu
 
     /**
      * The priority of the rule, if defined, otherwise 0.
-     * <p/>
+     * <p>
      * If priority is 0, just use definition order, as that's how older HSSF 
rules 
      *  are evaluated.
-     * <p/>
+     * <p>
      * For XSSF, this should always be set. For HSSF, only newer style rules
      *  have this set, older ones will return 0.
-     * <p/>
+     * <p>
      * If a rule is created but not yet added to a sheet, this value may not 
be valid.
      * @return rule priority
      */

Modified: 
poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java.svntmp
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java.svntmp?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- 
poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java.svntmp
 (original)
+++ 
poi/trunk/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java.svntmp
 Mon Jul 17 08:24:24 2017
@@ -86,11 +86,11 @@ public interface ConditionalFormattingRu
     
     /**
      * This is null if 
-     * <p/>
+     * <p>
      * <code>{@link #getConditionType()} != {@link ConditionType#FILTER}</code>
-     * <p/>
+     * <p>
      * This is always {@link ConditionFilterType#FILTER} for HSSF rules of 
type {@link ConditionType#FILTER}.
-     * <p/>
+     * <p>
      * For XSSF filter rules, this will indicate the specific type of filter.
      * 
      * @return filter type for filter rules, or null if not a filter rule.
@@ -99,11 +99,11 @@ public interface ConditionalFormattingRu
     
     /**
      * This is null if 
-     * <p/>
+     * <p>
      * <code>{@link #getConditionFilterType()} == null</code>
-     * <p/>
+     * <p>
      * This means it is always null for HSSF, which does not define the 
extended condition types.
-     * <p/>
+     * <p>
      * This object contains the additional configuration information for XSSF 
filter conditions.
      * 
      * @return
@@ -149,9 +149,9 @@ public interface ConditionalFormattingRu
     /**
      * HSSF just returns 0, XSSF uses the value stored in the model if 
present, 
      * otherwise uses 0.
-     * <p/>
+     * <p>
      * If priority is 0, just use definition order, as that's how HSSF rules 
are evaluated.
-     * <p/>
+     * <p>
      * If a rule is created but not yet added to a sheet, this value may not 
be valid.
 
      * @return rule priority

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/DataFormatter.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/DataFormatter.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/DataFormatter.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/DataFormatter.java Mon Jul 
17 08:24:24 2017
@@ -802,7 +802,7 @@ public class DataFormatter implements Ob
      * Returns the formatted value of an Excel date as a <tt>String</tt> based
      * on the cell's <code>DataFormat</code>. i.e. "Thursday, January 02, 2003"
      * , "01/02/2003" , "02-Jan" , etc.
-     * <p/>
+     * <p>
      * If any conditional format rules apply, the highest priority with a 
number format is used.
      * If no rules contain a number format, or no rules apply, the cell's 
style format is used.
      * If the style does not have a format, the default date format is applied.
@@ -828,7 +828,7 @@ public class DataFormatter implements Ob
      * based on the cell's <code>DataFormat</code>. Supported formats include
      * currency, percents, decimals, phone number, SSN, etc.:
      * "61.54%", "$100.00", "(800) 555-1234".
-     * <p/>
+     * <p>
      * Format comes from either the highest priority conditional format rule 
with a
      * specified format, or from the cell style.
      * 

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/FormulaEvaluator.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/FormulaEvaluator.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/FormulaEvaluator.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/FormulaEvaluator.java Mon 
Jul 17 08:24:24 2017
@@ -20,7 +20,7 @@ package org.apache.poi.ss.usermodel;
 import java.util.Map;
 
 /**
- * Evaluates formula cells.<p/>
+ * Evaluates formula cells.<p>
  * 
  * For performance reasons, this class keeps a cache of all previously 
calculated intermediate
  * cell values.  Be sure to call {@link #clearAllCachedResultValues()} if any 
workbook cells are changed between

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/Picture.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/Picture.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/Picture.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/Picture.java Mon Jul 17 
08:24:24 2017
@@ -46,9 +46,9 @@ public interface Picture extends Shape {
      * If the default font is changed the resized image can be streched 
vertically or horizontally.
      * </p>
      * <p>
-     * <code>resize(1.0,1.0)</code> keeps the original size,<br/>
-     * <code>resize(0.5,0.5)</code> resize to 50% of the original,<br/>
-     * <code>resize(2.0,2.0)</code> resizes to 200% of the original.<br/>
+     * <code>resize(1.0,1.0)</code> keeps the original size,<br>
+     * <code>resize(0.5,0.5)</code> resize to 50% of the original,<br>
+     * <code>resize(2.0,2.0)</code> resizes to 200% of the original.<br>
      * <code>resize({@link Double#MAX_VALUE},{@link Double#MAX_VALUE})</code> 
resizes to the dimension of the embedded image. 
      * </p>
      *

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/TableStyleType.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/TableStyleType.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/TableStyleType.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/TableStyleType.java Mon Jul 
17 08:24:24 2017
@@ -24,13 +24,13 @@ import org.apache.poi.ss.util.CellRangeA
  * Ordered list of table style elements, for both data tables and pivot tables.
  * Some elements only apply to pivot tables, but any style definition can omit 
any number,
  * so having them in one list should not be a problem.
- * <p/>
+ * <p>
  * The order is the specification order of application, with later elements 
overriding previous
  * ones, if style properties conflict.
- * <p/>
+ * <p>
  * Processing could iterate bottom-up if looking for specific properties, and 
stop when the
  * first style is found defining a value for that property.
- * <p/>
+ * <p>
  * Enum names match the OOXML spec values exactly, so {@link #valueOf(String)} 
will work.
  * 
  * @since 3.17 beta 1

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/Workbook.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/Workbook.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/Workbook.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/Workbook.java Mon Jul 17 
08:24:24 2017
@@ -395,7 +395,7 @@ public interface Workbook extends Closea
     Name createName();
 
     /**
-     * Gets the defined name index by name<br/>
+     * Gets the defined name index by name<br>
      * <i>Note:</i> Excel defined names are case-insensitive and
      * this method performs a case-insensitive search.
      *

Modified: poi/trunk/src/java/org/apache/poi/ss/util/AreaReference.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/AreaReference.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/AreaReference.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/AreaReference.java Mon Jul 17 
08:24:24 2017
@@ -41,7 +41,7 @@ public class AreaReference {
     
     /**
      * Create an area ref from a string representation.  Sheet names 
containing special characters should be
-     * delimited and escaped as per normal syntax rules for formulas.<br/> 
+     * delimited and escaped as per normal syntax rules for formulas.<br> 
      * The area reference must be contiguous (i.e. represent a single 
rectangle, not a union of rectangles)
      */
     public AreaReference(String reference, SpreadsheetVersion version) {
@@ -299,7 +299,7 @@ public class AreaReference {
 
     /**
      * Returns a text representation of this area reference.
-     * <p/>
+     * <p>
      *  Example return values:
      *    <table border="0" cellpadding="1" cellspacing="0" summary="Example 
return values">
      *      <tr><th align='left'>Result</th><th align='left'>Comment</th></tr>

Modified: poi/trunk/src/java/org/apache/poi/ss/util/CellRangeAddress.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/CellRangeAddress.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/CellRangeAddress.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/CellRangeAddress.java Mon Jul 17 
08:24:24 2017
@@ -23,7 +23,7 @@ import org.apache.poi.ss.formula.SheetNa
 import org.apache.poi.util.LittleEndianOutput;
 
 /**
- * See OOO documentation: excelfileformat.pdf sec 2.5.14 - 'Cell Range 
Address'<p/>
+ * See OOO documentation: excelfileformat.pdf sec 2.5.14 - 'Cell Range 
Address'<p>
  * 
  * <p>In the Microsoft documentation, this is also known as a 
  *  Ref8U - see page 831 of version 1.0 of the documentation.

Modified: poi/trunk/src/java/org/apache/poi/ss/util/CellRangeAddressBase.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/CellRangeAddressBase.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/CellRangeAddressBase.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/CellRangeAddressBase.java Mon Jul 
17 08:24:24 2017
@@ -25,7 +25,7 @@ import org.apache.poi.ss.usermodel.Cell;
 
 
 /**
- * See OOO documentation: excelfileformat.pdf sec 2.5.14 - 'Cell Range 
Address'<p/>
+ * See OOO documentation: excelfileformat.pdf sec 2.5.14 - 'Cell Range 
Address'<p>
  *
  * Common superclass of 8-bit and 16-bit versions
  */
@@ -149,7 +149,7 @@ public abstract class CellRangeAddressBa
     /**
      * Determines if the given {@link CellReference} lies within the bounds 
      * of this range.  
-     * <p/>NOTE: It is up to the caller to ensure the reference is 
+     * <p>NOTE: It is up to the caller to ensure the reference is 
      * for the correct sheet, since this instance doesn't have a sheet 
reference.
      *
      * @param ref the CellReference to check
@@ -163,7 +163,7 @@ public abstract class CellRangeAddressBa
        /**
         * Determines if the given {@link Cell} lies within the bounds 
         * of this range.  
-        * <p/>NOTE: It is up to the caller to ensure the reference is 
+        * <p>NOTE: It is up to the caller to ensure the reference is 
         * for the correct sheet, since this instance doesn't have a sheet 
reference.
         *
         * @param cell the Cell to check

Modified: poi/trunk/src/java/org/apache/poi/ss/util/CellRangeUtil.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/CellRangeUtil.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/CellRangeUtil.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/CellRangeUtil.java Mon Jul 17 
08:24:24 2017
@@ -41,7 +41,7 @@ public final class CellRangeUtil {
      * Get the type of intersection between two cell ranges
      * 
      * @param crB - the specified range
-     * @return code which reflects how the specified range is related to this 
range.<br/>
+     * @return code which reflects how the specified range is related to this 
range.<br>
      * Possible return codes are:
      * <ul>
      *     <li>{@link #NO_INTERSECTION} - the specified range is outside of 
this range;</li> 
@@ -81,7 +81,7 @@ public final class CellRangeUtil {
     }
 
     /**
-     * Do all possible cell merges between cells of the list so that:<br/>
+     * Do all possible cell merges between cells of the list so that:<br>
      * <ul>
      *   <li>if a cell range is completely inside of another cell range, it 
gets removed from the list</li>
      *   <li>if two cells have a shared border, merge them into one bigger 
cell range</li>

Modified: poi/trunk/src/java/org/apache/poi/ss/util/CellReference.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/CellReference.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/CellReference.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/CellReference.java Mon Jul 17 
08:24:24 2017
@@ -283,9 +283,9 @@ public class CellReference {
      * interpreted as a cell reference.  Names of that form can be also used 
for sheets and/or
      * named ranges, and in those circumstances, the question of whether the 
potential cell
      * reference is valid (in range) becomes important.
-     * <p/>
+     * <p>
      * Note - that the maximum sheet size varies across Excel versions:
-     * <p/>
+     * <p>
      * <blockquote><table border="0" cellpadding="1" cellspacing="0"
      *                 summary="Notable cases.">
      *   <tr><th>Version&nbsp;&nbsp;</th><th>File Format&nbsp;&nbsp;</th>
@@ -474,7 +474,7 @@ public class CellReference {
 
     /**
      * Returns a text representation of this cell reference.
-     * <p/>
+     * <p>
      *  Example return values:
      * <table border="0" cellpadding="1" cellspacing="0" summary="Example 
return values">
      *   <tr><th align='left'>Result</th><th align='left'>Comment</th></tr>

Modified: poi/trunk/src/java/org/apache/poi/ss/util/ExpandedDouble.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/ExpandedDouble.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/ExpandedDouble.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/ExpandedDouble.java Mon Jul 17 
08:24:24 2017
@@ -23,14 +23,14 @@ import static org.apache.poi.ss.util.IEE
 /**
  * Represents a 64 bit IEEE double quantity expressed with both decimal and 
binary exponents
  * Does not handle negative numbers or zero
- * <p/>
- * The value of a {@link ExpandedDouble} is given by<br/>
+ * <p>
+ * The value of a {@link ExpandedDouble} is given by<br>
  * <tt> a &times; 2<sup>b</sup></tt>
- * <br/>
- * where:<br/>
+ * <br>
+ * where:<br>
  *
- * <tt>a</tt> = <i>significand</i><br/>
- * <tt>b</tt> = <i>binaryExponent</i> - bitLength(significand) + 1<br/>
+ * <tt>a</tt> = <i>significand</i><br>
+ * <tt>b</tt> = <i>binaryExponent</i> - bitLength(significand) + 1<br>
  *
  * @author Josh Micich
  */

Modified: poi/trunk/src/java/org/apache/poi/ss/util/MutableFPNumber.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/MutableFPNumber.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/MutableFPNumber.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/MutableFPNumber.java Mon Jul 17 
08:24:24 2017
@@ -24,10 +24,10 @@ final class MutableFPNumber {
 
        // TODO - what about values between (10<sup>14</sup>-0.5) and 
(10<sup>14</sup>-0.05) ?
        /**
-        * The minimum value in 'Base-10 normalised form'.<br/>
+        * The minimum value in 'Base-10 normalised form'.<br>
         * When {@link #_binaryExponent} == 46 this is the the minimum {@link 
#_frac} value
         *  (10<sup>14</sup>-0.05) * 2^17
-        *  <br/>
+        *  <br>
         *  Values between (10<sup>14</sup>-0.05) and 10<sup>14</sup> will be 
represented as '1'
         *  followed by 14 zeros.
         *  Values less than (10<sup>14</sup>-0.05) will get shifted by one 
more power of 10
@@ -36,7 +36,7 @@ final class MutableFPNumber {
         */
        private static final BigInteger BI_MIN_BASE = new 
BigInteger("0B5E620F47FFFE666", 16);
        /**
-        * For 'Base-10 normalised form'<br/>
+        * For 'Base-10 normalised form'<br>
         * The maximum {@link #_frac} value when {@link #_binaryExponent} == 49
         * (10^15-0.5) * 2^14
         */

Modified: poi/trunk/src/java/org/apache/poi/ss/util/NormalisedDecimal.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/NormalisedDecimal.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/NormalisedDecimal.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/NormalisedDecimal.java Mon Jul 17 
08:24:24 2017
@@ -30,15 +30,15 @@ import java.math.BigInteger;
  * <li>Conversions to text</li>
  * </ol>
  *
- * <p/>
+ * <p>
  * This class does not handle negative numbers or zero.
- * <p/>
- * The value of a {@link NormalisedDecimal} is given by<br/>
+ * <p>
+ * The value of a {@link NormalisedDecimal} is given by<br>
  * <tt> significand &times; 10<sup>decimalExponent</sup></tt>
- * <br/>
- * where:<br/>
+ * <br>
+ * where:<br>
  *
- * <tt>significand</tt> = wholePart + fractionalPart / 2<sup>24</sup><br/>
+ * <tt>significand</tt> = wholePart + fractionalPart / 2<sup>24</sup><br>
  *
  * @author Josh Micich
  */

Modified: poi/trunk/src/java/org/apache/poi/ss/util/NumberComparer.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/NumberComparer.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/NumberComparer.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/NumberComparer.java Mon Jul 17 
08:24:24 2017
@@ -35,23 +35,23 @@ public final class NumberComparer {
         * mostly the same as those from {@link Double#compare(double, double)} 
but with some
         * rounding.  For numbers that are very close, this code converts to a 
format having 15
         * decimal digits of precision and a decimal exponent, before 
completing the comparison.
-        * <p/>
+        * <p>
         * In Excel formula evaluation, expressions like "(0.06-0.01)=0.05" 
evaluate to "TRUE" even
         * though the equivalent java expression is <code>false</code>.  In 
examples like this,
         * Excel achieves the effect by having additional logic for comparison 
operations.
-        * <p/>
-        * <p/>
+        * <p>
+        * <p>
         * Note - Excel also gives special treatment to expressions like 
"0.06-0.01-0.05" which
         * evaluates to "0" (in java, rounding anomalies give a result of 
6.9E-18).  The special
         * behaviour here is for different reasons to the example above:  If 
the last operator in a
         * cell formula is '+' or '-' and the result is less than 
2<sup>50</sup> times smaller than
         * first operand, the result is rounded to zero.
         * Needless to say, the two rules are not consistent and it is 
relatively easy to find
-        * examples that satisfy<br/>
-        * "A=B" is "TRUE" but "A-B" is not "0"<br/>
-        * and<br/>
-        * "A=B" is "FALSE" but "A-B" is "0"<br/>
-        * <br/>
+        * examples that satisfy<br>
+        * "A=B" is "TRUE" but "A-B" is not "0"<br>
+        * and<br>
+        * "A=B" is "FALSE" but "A-B" is "0"<br>
+        * <br>
         * This rule (for rounding the result of a final addition or 
subtraction), has not been
         * implemented in POI (as of Jul-2009).
         *

Modified: poi/trunk/src/java/org/apache/poi/ss/util/NumberToTextConverter.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/NumberToTextConverter.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/NumberToTextConverter.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/NumberToTextConverter.java Mon 
Jul 17 08:24:24 2017
@@ -120,7 +120,7 @@ public final class NumberToTextConverter
 
        /**
         * Converts the supplied <tt>value</tt> to the text representation that 
Excel would give if
-        * the value were to appear in an unformatted cell, or as a literal 
number in a formula.<br/>
+        * the value were to appear in an unformatted cell, or as a literal 
number in a formula.<br>
         * Note - the results from this method differ slightly from those of 
<tt>Double.toString()</tt>
         * In some special cases Excel behaves quite differently.  This 
function attempts to reproduce
         * those results.

Modified: poi/trunk/src/java/org/apache/poi/ss/util/SheetBuilder.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/SheetBuilder.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/SheetBuilder.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/SheetBuilder.java Mon Jul 17 
08:24:24 2017
@@ -83,7 +83,7 @@ public class SheetBuilder {
      * cells), creates cells if either corresponding array value is not
      * null or createEmptyCells property is true.
      * The conversion is performed in the following way:
-     * <p/>
+     * <p>
      * <ul>
      * <li>Numbers become numeric cells.</li>
      * <li><code>java.util.Date</code> or <code>java.util.Calendar</code>

Modified: poi/trunk/src/java/org/apache/poi/ss/util/SheetUtil.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/SheetUtil.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/SheetUtil.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/SheetUtil.java Mon Jul 17 
08:24:24 2017
@@ -354,10 +354,10 @@ public class SheetUtil {
 
     /**
      * Return the cell, without taking account of merged regions.
-     * <p/>
+     * <p>
      * Use {@link #getCellWithMerges(Sheet, int, int)} if you want the top left
      * cell from merged regions instead when the reference is a merged cell.
-     * <p/>
+     * <p>
      * Use this where you want to know if the given cell is explicitly defined
      * or not.
      *

Modified: 
poi/trunk/src/java/org/apache/poi/util/DelayableLittleEndianOutput.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/util/DelayableLittleEndianOutput.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/util/DelayableLittleEndianOutput.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/util/DelayableLittleEndianOutput.java Mon 
Jul 17 08:24:24 2017
@@ -18,7 +18,7 @@
 package org.apache.poi.util;
 /**
  * Implementors of this interface allow client code to 'delay' writing to a 
certain section of a
- * data output stream.<br/>
+ * data output stream.<br>
  * A typical application is for writing BIFF records when the size is not 
known until well after
  * the header has been written.  The client code can call {@link 
#createDelayedOutput(int)}
  * to reserve two bytes of the output for the 'ushort size' header field.  The 
delayed output can

Modified: poi/trunk/src/java/org/apache/poi/util/LittleEndian.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/util/LittleEndian.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/util/LittleEndian.java (original)
+++ poi/trunk/src/java/org/apache/poi/util/LittleEndian.java Mon Jul 17 
08:24:24 2017
@@ -331,7 +331,7 @@ public class LittleEndian implements Lit
 
     /**
      * executes:
-     * <p/>
+     * <p>
      * <code>
      * data[offset] = (byte)value;
      * </code>

Modified: poi/trunk/src/java/org/apache/poi/util/LittleEndianInputStream.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/util/LittleEndianInputStream.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/util/LittleEndianInputStream.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/util/LittleEndianInputStream.java Mon Jul 
17 08:24:24 2017
@@ -22,7 +22,7 @@ import java.io.IOException;
 import java.io.InputStream;
 
 /**
- * Wraps an {@link InputStream} providing {@link LittleEndianInput}<p/>
+ * Wraps an {@link InputStream} providing {@link LittleEndianInput}<p>
  *
  * This class does not buffer any input, so the stream read position maintained
  * by this class is consistent with that of the inner stream.

Modified: poi/trunk/src/java/org/apache/poi/util/ReplacingInputStream.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/util/ReplacingInputStream.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/util/ReplacingInputStream.java (original)
+++ poi/trunk/src/java/org/apache/poi/util/ReplacingInputStream.java Mon Jul 17 
08:24:24 2017
@@ -66,7 +66,7 @@ public class ReplacingInputStream extend
     /**
      * Replace occurrences of pattern in the input.<p>
      *
-     * If you want to normalize line endings DOS/MAC (\n\r | \r) to UNIX (\n), 
you can call the following:<br/>
+     * If you want to normalize line endings DOS/MAC (\n\r | \r) to UNIX (\n), 
you can call the following:<br>
      * {@code new ReplacingInputStream(new ReplacingInputStream(is, "\n\r", 
"\n"), "\r", "\n")}
      *
      * @param in input

Modified: poi/trunk/src/java/org/apache/poi/util/StringUtil.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/util/StringUtil.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/util/StringUtil.java (original)
+++ poi/trunk/src/java/org/apache/poi/util/StringUtil.java Mon Jul 17 08:24:24 
2017
@@ -153,7 +153,7 @@ public class StringUtil {
      * <li>byte[]/char[] characterData</li>
      * </ol>
      * For this encoding, the is16BitFlag is always present even if nChars==0.
-     * <br/>
+     * <br>
      * This method should be used when the nChars field is <em>not</em> stored
      * as a ushort immediately before the is16BitFlag. Otherwise, {@link
      * #readUnicodeString(LittleEndianInput)} can be used.
@@ -192,7 +192,7 @@ public class StringUtil {
         * <li>byte[]/char[] characterData</li>
         * </ol>
         * For this encoding, the is16BitFlag is always present even if 
nChars==0.
-        * <br/>
+        * <br>
         * This method should be used when the nChars field is <em>not</em> 
stored
         * as a ushort immediately before the is16BitFlag. Otherwise, {@link
         * #writeUnicodeString(LittleEndianOutput, String)} can be used.

Modified: poi/trunk/src/java/org/apache/poi/util/Units.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/util/Units.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/util/Units.java (original)
+++ poi/trunk/src/java/org/apache/poi/util/Units.java Mon Jul 17 08:24:24 2017
@@ -50,9 +50,9 @@ public class Units {
      * Width of one "standard character" of the default font in pixels. Same 
for Calibri and Arial.
      * "Standard character" defined as the widest digit character in the given 
font.
      * Copied from XSSFWorkbook, since that isn't available here.
-     * <p/>
+     * <p>
      * Note this is only valid for workbooks using the default Excel font.
-     * <p/>
+     * <p>
      * Would be nice to eventually support arbitrary document default fonts.
      */
     public static final float DEFAULT_CHARACTER_WIDTH = 7.0017f;

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java Mon 
Jul 17 08:24:24 2017
@@ -229,7 +229,7 @@ public class SXSSFCell implements Cell {
     /**
      * Converts the supplied date to its equivalent Excel numeric value and 
sets
      * that into the cell.
-     * <p/>
+     * <p>
      * <b>Note</b> - There is actually no 'DATE' cell type in Excel. In many
      * cases (when entering date values), Excel automatically adjusts the
      * <i>cell style</i> to some date format, creating the illusion that the 
cell

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/CustomIndexedColorMap.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/CustomIndexedColorMap.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/CustomIndexedColorMap.java
 (original)
+++ 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/CustomIndexedColorMap.java
 Mon Jul 17 08:24:24 2017
@@ -42,9 +42,9 @@ public class CustomIndexedColorMap imple
 
     /**
      * OOXML spec says if this exists it must have all indexes.
-     * <p/>
+     * <p>
      * From the OOXML Spec, Part 1, section 18.8.27:
-     * <p/><i>
+     * <p><i>
      * This element contains a sequence of RGB color values that correspond to 
color indexes (zero-based). When
      * using the default indexed color palette, the values are not written 
out, but instead are implied. When the color
      * palette has been modified from default, then the entire color palette 
is written out.

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java
 (original)
+++ 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java
 Mon Jul 17 08:24:24 2017
@@ -365,7 +365,7 @@ public enum XSSFBuiltinTableStyle {
      * Only init once - thus the synchronized.  Lazy, after creating instances,
      * and only when a style is actually needed, to avoid overhead for uses
      * that don't need the actual style definitions.
-     * <p/>
+     * <p>
      * Public so clients can initialize the map on startup rather than lazily
      * during evaluation if desired.
      */

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java Mon 
Jul 17 08:24:24 2017
@@ -692,7 +692,7 @@ public final class XSSFCell implements C
      * Return the cell type.  Tables in an array formula return 
      * {@link CellType#FORMULA} for all cells, even though the formula is only 
defined
      * in the OOXML file for the top left cell of the array. 
-     * <p/>
+     * <p>
      * NOTE: POI does not support data table formulas.
      * Cells in a data table appear to POI as plain cells typed from their 
cached value.
      *
@@ -1192,7 +1192,7 @@ public final class XSSFCell implements C
     }
 
     /**
-     * Chooses a new boolean value for the cell when its type is changing.<p/>
+     * Chooses a new boolean value for the cell when its type is changing.<p>
      *
      * Usually the caller is calling setCellType() with the intention of 
calling
      * setCellValue(boolean) straight afterwards.  This method only exists to 
give

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java 
Mon Jul 17 08:24:24 2017
@@ -364,7 +364,7 @@ public class XSSFCellStyle implements Ce
 
     /**
      * Get the color to use for the bottom border
-     * <br/>
+     * <br>
      * Color is optional. When missing, IndexedColors.AUTOMATIC is implied.
      * @return the index of the color definition, default value is {@link 
org.apache.poi.ss.usermodel.IndexedColors#AUTOMATIC}
      * @see org.apache.poi.ss.usermodel.IndexedColors
@@ -666,10 +666,10 @@ public class XSSFCellStyle implements Ce
      * <p>
      * Expressed in degrees. Values range from 0 to 180. The first letter of
      * the text is considered the center-point of the arc.
-     * <br/>
+     * <br>
      * For 0 - 90, the value represents degrees above horizon. For 91-180 the 
degrees below the
      * horizon is calculated as:
-     * <br/>
+     * <br>
      * <code>[degrees below horizon] = 90 - textRotation.</code>
      * </p>
      *
@@ -960,7 +960,7 @@ public class XSSFCellStyle implements Ce
 
     /**
     * Set the foreground fill color represented as a {@link XSSFColor} value.
-     * <br/>
+     * <br>
     * <i>Note: Ensure Foreground color is set prior to background color.</i>
     * @param color the color to use
     * @see #setFillBackgroundColor(org.apache.poi.xssf.usermodel.XSSFColor) )
@@ -981,7 +981,7 @@ public class XSSFCellStyle implements Ce
 
     /**
      * Set the foreground fill color as a indexed color value
-     * <br/>
+     * <br>
      * <i>Note: Ensure Foreground color is set prior to background color.</i>
      * @param fg the color to use
      * @see org.apache.poi.ss.usermodel.IndexedColors
@@ -1181,10 +1181,10 @@ public class XSSFCellStyle implements Ce
      * <p>
      * Expressed in degrees. Values range from 0 to 180. The first letter of
      * the text is considered the center-point of the arc.
-     * <br/>
+     * <br>
      * For 0 - 90, the value represents degrees above horizon. For 91-180 the 
degrees below the
      * horizon is calculated as:
-     * <br/>
+     * <br>
      * <code>[degrees below horizon] = 90 - textRotation.</code>
      * </p>
      *

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFFormulaEvaluator.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFFormulaEvaluator.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFFormulaEvaluator.java
 (original)
+++ 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFFormulaEvaluator.java
 Mon Jul 17 08:24:24 2017
@@ -27,7 +27,7 @@ import org.apache.poi.ss.usermodel.CellT
 import org.apache.poi.ss.usermodel.CellValue;
 
 /**
- * Evaluates formula cells.<p/>
+ * Evaluates formula cells.<p>
  *
  * For performance reasons, this class keeps a cache of all previously 
calculated intermediate
  * cell values.  Be sure to call {@link #clearAllCachedResultValues()} if any 
workbook cells are changed between

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFMap.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFMap.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFMap.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFMap.java Mon Jul 
17 08:24:24 2017
@@ -34,7 +34,7 @@ import org.w3c.dom.Node;
 /**
  * This class implements the Map element (Open Office XML Part 4:
  * chapter 3.16.2)
- * <p/>
+ * <p>
  * This element contains all of the properties related to the XML map,
  * and the behaviors expected during data refresh operations.
  *

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPicture.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPicture.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPicture.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPicture.java Mon 
Jul 17 08:24:24 2017
@@ -163,9 +163,9 @@ public final class XSSFPicture extends X
      * If the default font is changed the resized image can be streched 
vertically or horizontally.
      * </p>
      * <p>
-     * <code>resize(1.0,1.0)</code> keeps the original size,<br/>
-     * <code>resize(0.5,0.5)</code> resize to 50% of the original,<br/>
-     * <code>resize(2.0,2.0)</code> resizes to 200% of the original.<br/>
+     * <code>resize(1.0,1.0)</code> keeps the original size,<br>
+     * <code>resize(0.5,0.5)</code> resize to 50% of the original,<br>
+     * <code>resize(2.0,2.0)</code> resizes to 200% of the original.<br>
      * <code>resize({@link Double#MAX_VALUE},{@link Double#MAX_VALUE})</code> 
resizes to the dimension of the embedded image. 
      * </p>
      *

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPictureData.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPictureData.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPictureData.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFPictureData.java 
Mon Jul 17 08:24:24 2017
@@ -77,7 +77,7 @@ public class XSSFPictureData extends POI
      * <p>
      * Note, that this call might be expensive since all the picture data is 
copied into a temporary byte array.
      * You can grab the picture data directly from the underlying package part 
as follows:
-     * <br/>
+     * <br>
      * <code>
      * InputStream is = getPackagePart().getInputStream();
      * </code>

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java Mon 
Jul 17 08:24:24 2017
@@ -2447,7 +2447,7 @@ public class XSSFSheet extends POIXMLDoc
      * Character width is defined as the maximum digit width
      * of the numbers <code>0, 1, 2, ... 9</code> as rendered
      * using the default font (first font in the workbook).
-     * <br/>
+     * <br>
      * Unless you are using a very special font, the default character is '0' 
(zero),
      * this is true for Arial (default font font in HSSF) and Calibri (default 
font in XSSF)
      * </p>

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheetConditionalFormatting.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheetConditionalFormatting.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheetConditionalFormatting.java
 (original)
+++ 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheetConditionalFormatting.java
 Mon Jul 17 08:24:24 2017
@@ -52,7 +52,7 @@ public class XSSFSheetConditionalFormatt
 
     /**
      * A factory method allowing to create a conditional formatting rule
-     * with a cell comparison operator<p/>
+     * with a cell comparison operator<p>
      * TODO - formulas containing cell references are currently not parsed 
properly
      *
      * @param comparisonOperation - a constant value from

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFVMLDrawing.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFVMLDrawing.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFVMLDrawing.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFVMLDrawing.java 
Mon Jul 17 08:24:24 2017
@@ -130,7 +130,7 @@ public final class XSSFVMLDrawing extend
              * The result is that they contain things like &gt;br&lt;, which 
breaks the XML parsing.
              * This very sick InputStream wrapper attempts to spot these go 
past, and fix them.
              */
-            doc = DocumentHelper.readDocument(new ReplacingInputStream(is, 
"<br>", "<br/>"));
+            doc = DocumentHelper.readDocument(new ReplacingInputStream(is, 
"<br>", "<br>"));
         } catch (SAXException e) {
             throw new XmlException(e.getMessage(), e);
         }

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java 
Mon Jul 17 08:24:24 2017
@@ -1315,11 +1315,11 @@ public class XSSFWorkbook extends POIXML
     }
 
     /**
-     * Removes sheet at the given index.<p/>
+     * Removes sheet at the given index.<p>
      *
      * Care must be taken if the removed sheet is the currently active or only 
selected sheet in
      * the workbook. There are a few situations when Excel must have a 
selection and/or active
-     * sheet. (For example when printing - see Bug 40414).<br/>
+     * sheet. (For example when printing - see Bug 40414).<br>
      *
      * This method makes sure that if the removed sheet was active, another 
sheet will become
      * active in its place.  Furthermore, if the removed sheet was the only 
selected sheet, another
@@ -2013,10 +2013,10 @@ public class XSSFWorkbook extends POIXML
     }
 
     /**
-     * Specifies a boolean value that indicates whether structure of workbook 
is locked. <br/>
+     * Specifies a boolean value that indicates whether structure of workbook 
is locked. <br>
      * A value true indicates the structure of the workbook is locked. 
Worksheets in the workbook can't be moved,
-     * deleted, hidden, unhidden, or renamed, and new worksheets can't be 
inserted.<br/>
-     * A value of false indicates the structure of the workbook is not 
locked.<br/>
+     * deleted, hidden, unhidden, or renamed, and new worksheets can't be 
inserted.<br>
+     * A value of false indicates the structure of the workbook is not 
locked.<br>
      *
      * @return true if structure of workbook is locked
      */
@@ -2025,9 +2025,9 @@ public class XSSFWorkbook extends POIXML
     }
 
     /**
-     * Specifies a boolean value that indicates whether the windows that 
comprise the workbook are locked. <br/>
+     * Specifies a boolean value that indicates whether the windows that 
comprise the workbook are locked. <br>
      * A value of true indicates the workbook windows are locked. Windows are 
the same size and position each time the
-     * workbook is opened.<br/>
+     * workbook is opened.<br>
      * A value of false indicates the workbook windows are not locked.
      *
      * @return true if windows that comprise the workbook are locked

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/extensions/XSSFCellAlignment.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/extensions/XSSFCellAlignment.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/extensions/XSSFCellAlignment.java
 (original)
+++ 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/extensions/XSSFCellAlignment.java
 Mon Jul 17 08:24:24 2017
@@ -105,13 +105,13 @@ public class XSSFCellAlignment {
 
     /**
      * Get the degree of rotation for the text in the cell
-     * <p/>
+     * <p>
      * Expressed in degrees. Values range from 0 to 180. The first letter of
      * the text is considered the center-point of the arc.
-     * <br/>
+     * <br>
      * For 0 - 90, the value represents degrees above horizon. For 91-180 the 
degrees below the
      * horizon is calculated as:
-     * <br/>
+     * <br>
      * <code>[degrees below horizon] = 90 - textRotation.</code>
      * </p>
      *
@@ -123,13 +123,13 @@ public class XSSFCellAlignment {
 
     /**
      * Set the degree of rotation for the text in the cell
-     * <p/>
+     * <p>
      * Expressed in degrees. Values range from 0 to 180. The first letter of
      * the text is considered the center-point of the arc.
-     * <br/>
+     * <br>
      * For 0 - 90, the value represents degrees above horizon. For 91-180 the 
degrees below the
      * horizon is calculated as:
-     * <br/>
+     * <br>
      * <code>[degrees below horizon] = 90 - textRotation.</code>
      * </p>
      *

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.java
 (original)
+++ 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.java
 Mon Jul 17 08:24:24 2017
@@ -52,7 +52,7 @@ public final class XSSFFormulaUtils {
     /**
      * Update sheet name in all formulas and named ranges.
      * Called from {@link XSSFWorkbook#setSheetName(int, String)}
-     * <p/>
+     * <p>
      * <p>
      * The idea is to parse every formula and render it back to string
      * with the updated sheet name. This is done by parsing into Ptgs,

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/util/EvilUnclosedBRFixingInputStream.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/util/EvilUnclosedBRFixingInputStream.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/util/EvilUnclosedBRFixingInputStream.java
 (original)
+++ 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/util/EvilUnclosedBRFixingInputStream.java
 Mon Jul 17 08:24:24 2017
@@ -41,6 +41,6 @@ import org.apache.poi.util.ReplacingInpu
 @Internal
 public class EvilUnclosedBRFixingInputStream extends ReplacingInputStream {
    public EvilUnclosedBRFixingInputStream(InputStream source) {
-      super(source, "<br>", "<br/>");
+      super(source, "<br>", "<br>");
    }
 }

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/AbstractXWPFSDT.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/AbstractXWPFSDT.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/AbstractXWPFSDT.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/AbstractXWPFSDT.java 
Mon Jul 17 08:24:24 2017
@@ -22,9 +22,9 @@ import org.openxmlformats.schemas.wordpr
 
 /**
  * Experimental abstract class that is a base for XWPFSDT and XWPFSDTCell
- * <p/>
+ * <p>
  * WARNING - APIs expected to change rapidly.
- * <p/>
+ * <p>
  * These classes have so far been built only for read-only processing.
  */
 public abstract class AbstractXWPFSDT implements ISDTContents {

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/BreakClear.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/BreakClear.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/BreakClear.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/BreakClear.java Mon 
Jul 17 08:24:24 2017
@@ -33,7 +33,7 @@ public enum BreakClear {
      * line in the WordprocessingML document, regardless of its position left 
to
      * right or the presence of any floating objects which intersect with the
      * line,
-     * <p/>
+     * <p>
      * This is the setting for a typical line break in a document.
      */
 

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/ICell.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/ICell.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/ICell.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/ICell.java Mon Jul 
17 08:24:24 2017
@@ -19,7 +19,7 @@ package org.apache.poi.xwpf.usermodel;
 /**
  * Interface for anything that can be at a table cell level:
  * {@link XWPFTableCell}, {@link XWPFSDTCell}
- * <p/>
+ * <p>
  * Schematically something like this:
  * &lt;tr&gt;&lt;tc/&gt;&lt;tc/&gt;&lt;sdt&gt&lt;tc/&gt;&lt;/sdt&gt;&lt;/tr&gt;
  */

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/IRunBody.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/IRunBody.java?rev=1802110&r1=1802109&r2=1802110&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/IRunBody.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/IRunBody.java Mon 
Jul 17 08:24:24 2017
@@ -22,7 +22,7 @@ import org.apache.poi.wp.usermodel.Parag
 /**
  * Simple interface describing both {@link XWPFParagraph}
  * and {@link XWPFSDT}
- * <p/>
+ * <p>
  * TODO Should this be based on / extend {@link Paragraph}?
  */
 public interface IRunBody {



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@poi.apache.org
For additional commands, e-mail: commits-h...@poi.apache.org

Reply via email to