Author: nick
Date: Tue Jun 18 23:38:25 2013
New Revision: 1494378

URL: http://svn.apache.org/r1494378
Log:
Remove tab indents

Modified:
    poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java?rev=1494378&r1=1494377&r2=1494378&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java 
Tue Jun 18 23:38:25 2013
@@ -521,7 +521,7 @@ public class XWPFDocument extends POIXML
      * the position of this table in the table array list
      * @param pos position of the table in the bodyelement array list
      * @return if there is a table at the position in the bodyelement array 
list,
-     *                    else it will return null. 
+     *         else it will return null. 
      */
     public int getTablePos(int pos) {
        return getBodyElementSpecificPos(pos, tables);
@@ -1062,9 +1062,9 @@ public class XWPFDocument extends POIXML
      * 
      *  NOTICES:
      *  <ul>
-     *         <li>Causing Word to ask on open: "This document contains fields 
that may refer to other files. Do you want to update the fields in this 
document?"
-     *           (if "Update automatic links at open" is enabled)</li>
-     *         <li>Flag is removed after saving with changes in Word </li>
+     *   <li>Causing Word to ask on open: "This document contains fields that 
may refer to other files. Do you want to update the fields in this document?"
+     *       (if "Update automatic links at open" is enabled)</li>
+     *   <li>Flag is removed after saving with changes in Word </li>
      *  </ul> 
      */
     public void enforceUpdateFields() {
@@ -1298,7 +1298,7 @@ public class XWPFDocument extends POIXML
      * @see org.apache.poi.xwpf.usermodel.IBody#getParagraphArray(int)
      */
     public XWPFParagraph getParagraphArray(int pos) {
-        if(pos >= 0 && pos < paragraphs.size()){               
+        if (pos >= 0 && pos < paragraphs.size()) {
             return paragraphs.get(pos);
         }
         return null;
@@ -1317,7 +1317,7 @@ public class XWPFDocument extends POIXML
 
     /**
      * get the PartType of the body, for example
-     * DOCUMENT, HEADER, FOOTER,       FOOTNOTE,
+     * DOCUMENT, HEADER, FOOTER, FOOTNOTE,
      *
      * @see org.apache.poi.xwpf.usermodel.IBody#getPartType()
      */



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to