mirror of https://github.com/apache/poi.git
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:
parent
ba9b7be7c6
commit
0cf380969d
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue