From a487bee76803d0024bf1c92bd55961db504bdb86 Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Fri, 2 Feb 2018 10:35:48 +0000 Subject: [PATCH] Fix small typo, closes PR #97 on Github. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1822937 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/poi/xssf/usermodel/XSSFCellStyle.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 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 bbbe08395b..722c18e15d 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java @@ -118,7 +118,7 @@ public class XSSFCellStyle implements CellStyle { */ public void verifyBelongsToStylesSource(StylesTable src) { if(this._stylesSource != src) { - throw new IllegalArgumentException("This Style does not belong to the supplied Workbook Stlyes Source. Are you trying to assign a style from one workbook to the cell of a differnt workbook?"); + throw new IllegalArgumentException("This Style does not belong to the supplied Workbook Styles Source. Are you trying to assign a style from one workbook to the cell of a differnt workbook?"); } } @@ -210,7 +210,7 @@ public class XSSFCellStyle implements CellStyle { _cellXf.setFillId(idx); _cellXf.setApplyFill(true); } - + private void addBorder(CTBorder border) { int idx = _stylesSource.putBorder(new XSSFCellBorder(border, _theme,_stylesSource.getIndexedColors())); @@ -559,7 +559,7 @@ public class XSSFCellStyle implements CellStyle { public boolean getQuotePrefixed() { return _cellXf.getQuotePrefix(); } - + /** * Get the color to use for the right border * @@ -922,7 +922,7 @@ public class XSSFCellStyle implements CellStyle { } return ct; } - + /** * Set reading order for the cell * @@ -1064,7 +1064,7 @@ public class XSSFCellStyle implements CellStyle { } _cellXf.getProtection().setLocked(locked); } - + /** * Turn on or off "Quote Prefix" or "123 Prefix" for the style, * which is used to tell Excel that the thing which looks like @@ -1119,8 +1119,8 @@ public class XSSFCellStyle implements CellStyle { * [degrees below horizon] = 90 - textRotation. *

* - * Note: HSSF uses values from -90 to 90 degrees, whereas XSSF - * uses values from 0 to 180 degrees. The implementations of this method will map between these two value-ranges + * Note: HSSF uses values from -90 to 90 degrees, whereas XSSF + * uses values from 0 to 180 degrees. The implementations of this method will map between these two value-ranges * accordingly, however the corresponding getter is returning values in the range mandated by the current type * of Excel file-format that this CellStyle is applied to. * -- 2.39.5