]> source.dussan.org Git - poi.git/commitdiff
Remove Javadoc/Eclipse warnings
authorDominik Stadler <centic@apache.org>
Sat, 14 Mar 2015 19:33:09 +0000 (19:33 +0000)
committerDominik Stadler <centic@apache.org>
Sat, 14 Mar 2015 19:33:09 +0000 (19:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1666737 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hdf/extractor/WordDocument.java

index e8bc31643ab86a28271f3b3fd903ebea8189cb7c..929de311b728c4e6d880042602f9da76ebc24fa9 100644 (file)
@@ -114,6 +114,8 @@ public final class WordDocument {
   /**
    *  right now this function takes one parameter: a Word file, and outputs an
    *  XSL-FO document at c:\test.xml (this is hardcoded)
+   *  
+   *  @param args The document to read
    */
   public static void main(String args[])
   {
@@ -758,7 +760,7 @@ public final class WordDocument {
     size = lineHeights.size();
     for(int x = 0; x < size; x++)
     {
-      Integer height = (Integer)lineHeights.get(x);
+      Integer height = lineHeights.get(x);
       sum += height.intValue();
     }
 
@@ -1765,7 +1767,7 @@ public final class WordDocument {
       for(int x = 0; x < size; x++)
       {
         StringBuffer rowBuffer = tableBodyBuffer;
-        TableRow row = (TableRow)_table.get(x);
+        TableRow row = _table.get(x);
         TAP tap = row.getTAP();
         ArrayList<String> cells = row.getCells();
 
@@ -1797,7 +1799,7 @@ public final class WordDocument {
           addBorder(rowBuffer, tc._brcBottom, "bottom");
           addBorder(rowBuffer, tc._brcRight, "right");
           rowBuffer.append(">");
-          rowBuffer.append((String)cells.get(y));
+          rowBuffer.append(cells.get(y));
           rowBuffer.append("</fo:table-cell>");
         }
         rowBuffer.append("</fo:table-row>");