mirror of https://github.com/apache/poi.git
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:
parent
ad05042173
commit
edd0857f66
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue