delete unnecessary cast

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1711876 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-11-02 01:51:03 +00:00
parent af4a96f467
commit c0aec91a93
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ public class SXSSFRow implements Row
*/
public float getHeightInPoints()
{
return (float)(_height==-1?getSheet().getDefaultRowHeightInPoints():(float)_height/20.0);
return (float)(_height==-1?getSheet().getDefaultRowHeightInPoints():_height/20.0);
}
/**