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 1e6c2d5271
commit edfd7a2b42
1 changed files with 2 additions and 1 deletions

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