sort to int conversion sign extension fix

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@639918 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Josh Micich 2008-03-21 23:47:51 +00:00
parent ce8c6149ff
commit ba76fcf314
1 changed files with 3 additions and 3 deletions

View File

@ -296,9 +296,9 @@ public final class HSSFRow implements Comparable {
* @param cellnum 0 based column number
* @return HSSFCell representing that column or null if undefined.
*/
public HSSFCell getCell(short cellnum)
{
return getCell((int)cellnum);
public HSSFCell getCell(short cellnum) {
int ushortCellNum = cellnum & 0x0000FFFF; // avoid sign extension
return getCell(ushortCellNum);
}
/**
* Get the hssfcell representing a given column (logical cell)