git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716365 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-11-25 11:52:25 +00:00
parent e8b2d5feb4
commit 19f4f8af22
1 changed files with 2 additions and 2 deletions

View File

@ -226,10 +226,10 @@ public class SheetUtil {
} }
/** /**
* Get default character width * Get default character width using the Workbook's default font
* *
* @param wb the workbook to get the default character width from * @param wb the workbook to get the default character width from
* @return default character width * @return default character width in pixels
*/ */
private static int getDefaultCharWidth(final Workbook wb) { private static int getDefaultCharWidth(final Workbook wb) {
Font defaultFont = wb.getFontAt((short) 0); Font defaultFont = wb.getFontAt((short) 0);