This is an automated email from the ASF dual-hosted git repository. centic pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/poi.git
commit b16a094bba9f8016c22400a7d7a4a1128f53f818 Author: Dominik Stadler <[email protected]> AuthorDate: Mon Nov 3 07:11:32 2025 +0100 Fix JavaDoc Otherwise javadoc generation fails locally --- .../main/java/org/apache/poi/ss/util/CellUtil.java | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/poi/src/main/java/org/apache/poi/ss/util/CellUtil.java b/poi/src/main/java/org/apache/poi/ss/util/CellUtil.java index 8ee369755c..e1e758fd2a 100644 --- a/poi/src/main/java/org/apache/poi/ss/util/CellUtil.java +++ b/poi/src/main/java/org/apache/poi/ss/util/CellUtil.java @@ -746,7 +746,7 @@ public final class CellUtil { * map will not modify the cell style. The returned map is mutable. * * @param style cell style - * @return map of format properties + * @return map of format properties (CellPropertyType -> Object) * @see #setFormatProperties(CellStyle, Workbook, Map) * @since POI 5.5.0 */ @@ -817,7 +817,7 @@ public final class CellUtil { * * @param style cell style * @param workbook parent workbook (can be null but some fomt info will not be copied if null is passed) - * @param properties map of format properties (CellPropertyType -> Object) + * @param properties map of format properties (CellPropertyType -> Object) * @see #getFormatProperties(CellStyle) */ private static void setFormatProperties(CellStyle style, Workbook workbook, Map<CellPropertyType, Object> properties) { @@ -895,7 +895,7 @@ public final class CellUtil { /** * Utility method that returns the named short value from the given map. * - * @param properties map of named properties (CellPropertyType -> Object) + * @param properties map of named properties (CellPropertyType -> Object) * @param property property * @return zero if the property does not exist, or is not a {@link Short} * otherwise the property value @@ -922,7 +922,7 @@ public final class CellUtil { /** * Utility method that returns the named Color value from the given map. * - * @param properties map of named properties (CellPropertyType -> Object) + * @param properties map of named properties (CellPropertyType -> Object) * @param property property * @return null if the property does not exist, or is not a {@link Color} * otherwise the property value @@ -939,7 +939,7 @@ public final class CellUtil { /** * Utility method that returns the named int value from the given map. * - * @param properties map of named properties (CellPropertyType -> Object) + * @param properties map of named properties (CellPropertyType -> Object) * @param property property * @return zero if the property does not exist, or is not a {@link Integer} * otherwise the property value @@ -955,7 +955,7 @@ public final class CellUtil { /** * Utility method that returns the named BorderStyle value from the given map. * - * @param properties map of named properties (CellPropertyType -> Object) + * @param properties map of named properties (CellPropertyType -> Object) * @param property property * @return Border style if set, otherwise {@link BorderStyle#NONE} */ @@ -981,7 +981,7 @@ public final class CellUtil { /** * Utility method that returns the named FillPatternType value from the given map. * - * @param properties map of named properties (CellPropertyType -> Object) + * @param properties map of named properties (CellPropertyType -> Object) * @param property property * @return FillPatternType style if set, otherwise {@link FillPatternType#NO_FILL} * @since POI 3.15 beta 3 @@ -1008,7 +1008,7 @@ public final class CellUtil { /** * Utility method that returns the named HorizontalAlignment value from the given map. * - * @param properties map of named properties (CellPropertyType -> Object) + * @param properties map of named properties (CellPropertyType -> Object) * @param property property * @return HorizontalAlignment style if set, otherwise {@link HorizontalAlignment#GENERAL} * @since POI 3.15 beta 3 @@ -1035,7 +1035,7 @@ public final class CellUtil { /** * Utility method that returns the named VerticalAlignment value from the given map. * - * @param properties map of named properties (CellPropertyType -> Object) + * @param properties map of named properties (CellPropertyType -> Object) * @param property property * @return VerticalAlignment style if set, otherwise {@link VerticalAlignment#BOTTOM} * @since POI 3.15 beta 3 @@ -1062,7 +1062,7 @@ public final class CellUtil { /** * Utility method that returns the named boolean value from the given map. * - * @param properties map of properties (CellPropertyType -> Object) + * @param properties map of properties (CellPropertyType -> Object) * @param property property * @return false if the property does not exist, or is not a {@link Boolean}, * true otherwise @@ -1079,7 +1079,7 @@ public final class CellUtil { /** * Utility method that puts the given value to the given map. * - * @param properties map of properties (CellPropertyType -> Object) + * @param properties map of properties (CellPropertyType -> Object) * @param property property * @param value property value */ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
