mirror of https://github.com/apache/poi.git
Remove unnecessary StringBuilder [thanks to Kui Liu]. This close #80.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812232 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1b171e8642
commit
67e6ad9c47
|
@ -333,8 +333,6 @@ public class WordToHtmlConverter extends AbstractWordConverter
|
||||||
final int aspectRatioX = picture.getHorizontalScalingFactor();
|
final int aspectRatioX = picture.getHorizontalScalingFactor();
|
||||||
final int aspectRatioY = picture.getVerticalScalingFactor();
|
final int aspectRatioY = picture.getVerticalScalingFactor();
|
||||||
|
|
||||||
StringBuilder style = new StringBuilder();
|
|
||||||
|
|
||||||
final float imageWidth;
|
final float imageWidth;
|
||||||
final float imageHeight;
|
final float imageHeight;
|
||||||
|
|
||||||
|
@ -402,7 +400,6 @@ public class WordToHtmlConverter extends AbstractWordConverter
|
||||||
+ imageHeight + "in;" );
|
+ imageHeight + "in;" );
|
||||||
inner.appendChild( image );
|
inner.appendChild( image );
|
||||||
|
|
||||||
style.append( "overflow:hidden;" );
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue