fix missing css in Word-to-HTML converter if getDocument() not called

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1149026 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-21 03:38:52 +00:00
parent b4ae01ff14
commit 5561ba40b3

View File

@ -164,7 +164,6 @@ public class WordToHtmlConverter extends AbstractWordConverter
public Document getDocument()
{
htmlDocumentFacade.updateStylesheet();
return htmlDocumentFacade.getDocument();
}
@ -232,6 +231,8 @@ public class WordToHtmlConverter extends AbstractWordConverter
if ( notes != null )
htmlDocumentFacade.getBody().appendChild( notes );
htmlDocumentFacade.updateStylesheet();
}
@Override