From d662021bafa47843643fb8849dd6784949f83c5c Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Mon, 24 Aug 2015 17:55:57 +0000 Subject: [PATCH] Javadoc tweak git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1697462 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java index b3587fc4a0..7bb2fd6db4 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java @@ -615,7 +615,7 @@ public class XSSFCellStyle implements CellStyle { /** * Get the index within the StylesTable (sequence within the collection of CTXf elements) * - * @return unique index number of the underlying record this style represents + * @return unique index number of the underlying record this style represents, as a short (may wrap) */ @Override public short getIndex() { @@ -627,7 +627,7 @@ public class XSSFCellStyle implements CellStyle { * the main getIndex() and others would return int, not short, but that would affect some * public APIs * - * @return + * @return unique index number of the underlying record this style represents, as an int (always positive) */ protected int getUIndex() { return this._cellXfId; -- 2.39.5