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
bc7d79a613
commit
229af142fc
@ -333,8 +333,6 @@ public class WordToHtmlConverter extends AbstractWordConverter
|
||||
final int aspectRatioX = picture.getHorizontalScalingFactor();
|
||||
final int aspectRatioY = picture.getVerticalScalingFactor();
|
||||
|
||||
StringBuilder style = new StringBuilder();
|
||||
|
||||
final float imageWidth;
|
||||
final float imageHeight;
|
||||
|
||||
@ -402,7 +400,6 @@ public class WordToHtmlConverter extends AbstractWordConverter
|
||||
+ imageHeight + "in;" );
|
||||
inner.appendChild( image );
|
||||
|
||||
style.append( "overflow:hidden;" );
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user