diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java b/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java index b7101940c..a0007fcee 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java @@ -266,7 +266,6 @@ public final class HSSFWorkbook extends POIDocument implements org.apache.poi.ss * low level models. If you're reading in a workbook...start here. * * @param directory the POI filesystem directory to process from - * @param fs the POI filesystem that contains the Workbook stream. * @param preserveNodes whether to preseve other nodes, such as * macros. This takes more memory, so only say yes if you * need to. If set, will store all of the POIFSFileSystem diff --git a/src/java/org/apache/poi/poifs/filesystem/DirectoryNode.java b/src/java/org/apache/poi/poifs/filesystem/DirectoryNode.java index d5c75ea17..d6f86d5ef 100644 --- a/src/java/org/apache/poi/poifs/filesystem/DirectoryNode.java +++ b/src/java/org/apache/poi/poifs/filesystem/DirectoryNode.java @@ -180,7 +180,7 @@ public class DirectoryNode /** * open a document in the directory's entry's list of entries * - * @param documentEntry the document to be opened + * @param document the document to be opened * * @return a newly opened DocumentInputStream or NDocumentInputStream * diff --git a/src/java/org/apache/poi/poifs/property/PropertyTableBase.java b/src/java/org/apache/poi/poifs/property/PropertyTableBase.java index a3520815e..b3690c5c2 100644 --- a/src/java/org/apache/poi/poifs/property/PropertyTableBase.java +++ b/src/java/org/apache/poi/poifs/property/PropertyTableBase.java @@ -48,8 +48,8 @@ public abstract class PropertyTableBase implements BATManaged { * to extract the property table from it). Populates the * properties thoroughly * - * @param startBlock the first block of the property table - * @param blockList the list of blocks + * @param header_block the first block to read from + * @param properties the list to populate * * @exception IOException if anything goes wrong (which should be * a result of the input being NFG) diff --git a/src/java/org/apache/poi/ss/formula/functions/Irr.java b/src/java/org/apache/poi/ss/formula/functions/Irr.java index 27f7232eb..a2faf181c 100644 --- a/src/java/org/apache/poi/ss/formula/functions/Irr.java +++ b/src/java/org/apache/poi/ss/formula/functions/Irr.java @@ -75,7 +75,7 @@ public final class Irr implements Function { *
** The implementation is inspired by the NewtonSolver from the Apache Commons-Math library, - * @see {http://commons.apache.org/} + * @see http://commons.apache.org *
* * @param values the income values. @@ -83,8 +83,10 @@ public final class Irr implements Function { * @return the irr value. The method returnsDouble.NaN
* if the maximum iteration count is exceeded
*
- * @see {http://en.wikipedia.org/wiki/Internal_rate_of_return#Numerical_solution}
- * @see {http://en.wikipedia.org/wiki/Newton%27s_method}
+ * @see
+ * http://en.wikipedia.org/wiki/Internal_rate_of_return#Numerical_solution
+ * @see
+ * http://en.wikipedia.org/wiki/Newton%27s_method
*/
public static double irr(double[] values, double guess) {
int maxIterationCount = 20;
diff --git a/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java b/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java
index a9b08eec3..6ec685cb4 100644
--- a/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java
+++ b/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java
@@ -556,9 +556,6 @@ public abstract class OPCPackage implements RelationshipSource, Closeable {
return retArr;
}
- /**
- * @return
- */
public List* <w:zoom w:percent="50" /> *- * @return percentage as an integer of zoom level */ public void setZoomPercent(long zoomPercent) { if (! ctSettings.isSetZoom()) { diff --git a/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java b/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java index 4d00e79e4..91c4c7479 100644 --- a/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java +++ b/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java @@ -118,7 +118,6 @@ public class MAPIMessage extends POIDocument { * Constructor for reading MSG Files from a certain * point within a POIFS filesystem * @param poifsDir - * @param fs * @throws IOException */ public MAPIMessage(DirectoryNode poifsDir) throws IOException { diff --git a/src/scratchpad/src/org/apache/poi/hwpf/HWPFDocument.java b/src/scratchpad/src/org/apache/poi/hwpf/HWPFDocument.java index 98fbfbe96..c5c4d82aa 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/HWPFDocument.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/HWPFDocument.java @@ -152,7 +152,7 @@ public final class HWPFDocument extends HWPFDocumentCore * in a POIFSFileSystem, probably not the default. * Used typically to open embeded documents. * - * @param pfilesystem The POIFSFileSystem that contains the Word document. + * @param directory The DirectoryNode that contains the Word document. * @throws IOException If there is an unexpected IOException from the passed * in POIFSFileSystem. */ diff --git a/src/scratchpad/src/org/apache/poi/hwpf/HWPFDocumentCore.java b/src/scratchpad/src/org/apache/poi/hwpf/HWPFDocumentCore.java index 75eb565f3..e37aee1f2 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/HWPFDocumentCore.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/HWPFDocumentCore.java @@ -126,7 +126,7 @@ public abstract class HWPFDocumentCore extends POIDocument * in a POIFSFileSystem, probably not the default. * Used typically to open embeded documents. * - * @param pfilesystem The POIFSFileSystem that contains the Word document. + * @param directory The DirectoryNode that contains the Word document. * @throws IOException If there is an unexpected IOException from the passed * in POIFSFileSystem. */