From: Javen O'Neal Date: Fri, 4 Dec 2015 07:20:36 +0000 (+0000) Subject: fix javadocs errors X-Git-Tag: REL_3_14_BETA1~21 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a2d55ee784973b545e247143ff70213658ab00a0;p=poi.git fix javadocs errors git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717907 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/poi/ss/usermodel/Cell.java b/src/java/org/apache/poi/ss/usermodel/Cell.java index ca7738a32a..1c50006391 100644 --- a/src/java/org/apache/poi/ss/usermodel/Cell.java +++ b/src/java/org/apache/poi/ss/usermodel/Cell.java @@ -354,7 +354,7 @@ public interface Cell { * Gets the address of this cell * * @return A1 style address of this cell - * @since 3.14beta2 + * @since 3.14beta1 */ CellAddress getAddress(); diff --git a/src/java/org/apache/poi/ss/usermodel/Sheet.java b/src/java/org/apache/poi/ss/usermodel/Sheet.java index aa37943327..055072d262 100644 --- a/src/java/org/apache/poi/ss/usermodel/Sheet.java +++ b/src/java/org/apache/poi/ss/usermodel/Sheet.java @@ -1123,15 +1123,15 @@ public interface Sheet extends Iterable { * Return location of the active cell, e.g. A1. * * @return the location of the active cell. - * @since 3.14beta2 + * @since 3.14beta1 */ public CellAddress getActiveCell(); /** * Sets location of the active cell * - * @param addr the location of the active cell, e.g. A1. - * @since 3.14beta2 + * @param address the location of the active cell, e.g. A1. + * @since 3.14beta1 */ public void setActiveCell(CellAddress address); }