diff --git a/src/java/org/apache/poi/hssf/model/Sheet.java b/src/java/org/apache/poi/hssf/model/Sheet.java index 5784f96516..363ece2906 100644 --- a/src/java/org/apache/poi/hssf/model/Sheet.java +++ b/src/java/org/apache/poi/hssf/model/Sheet.java @@ -1949,7 +1949,7 @@ public class Sheet implements Model /** * Sets the left column to show in desktop window pane. - * @param the left column to show in desktop window pane + * @param leftCol the left column to show in desktop window pane */ public void setLeftCol(short leftCol){ if (windowTwo!=null) diff --git a/src/java/org/apache/poi/hssf/record/FormatRecord.java b/src/java/org/apache/poi/hssf/record/FormatRecord.java index 30448bb427..d48ef3bc4d 100644 --- a/src/java/org/apache/poi/hssf/record/FormatRecord.java +++ b/src/java/org/apache/poi/hssf/record/FormatRecord.java @@ -185,7 +185,6 @@ public class FormatRecord * get the format string * * @return the format string - * @see #getFormatStringLength() */ public String getFormatString() diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java index d1b01ceb44..7cf9ac6ede 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java @@ -895,8 +895,8 @@ public class HSSFSheet /** * Sets desktop window pane display area, when the * file is first opened in a viewer. - * @param the top row to show in desktop window pane - * @param the left column to show in desktop window pane + * @param toprow the top row to show in desktop window pane + * @param leftcol the left column to show in desktop window pane */ public void showInPane(short toprow, short leftcol){ this.sheet.setTopRow((short)toprow);