]> source.dussan.org Git - poi.git/commitdiff
Remove tab indents
authorNick Burch <nick@apache.org>
Tue, 18 Jun 2013 23:38:25 +0000 (23:38 +0000)
committerNick Burch <nick@apache.org>
Tue, 18 Jun 2013 23:38:25 +0000 (23:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1494378 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java

index d5f5487861c0b9ae48f8f23b44f7d74ee23efc50..e5371b9804627f475651adfa046d73f9674912cd 100644 (file)
@@ -521,7 +521,7 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
      * 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 POIXMLDocument implements Document, IBody {
      * 
      *  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 POIXMLDocument implements Document, IBody {
      * @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 POIXMLDocument implements Document, IBody {
 
     /**
      * get the PartType of the body, for example
-     * DOCUMENT, HEADER, FOOTER,       FOOTNOTE,
+     * DOCUMENT, HEADER, FOOTER, FOOTNOTE,
      *
      * @see org.apache.poi.xwpf.usermodel.IBody#getPartType()
      */