More HPSF-related beautification

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@391590 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2006-04-05 11:43:40 +00:00
parent ff008b3ae9
commit 94ab8d0aff

View File

@ -99,10 +99,10 @@ public abstract class POIDocument {
*/
protected void writeProperties(POIFSFileSystem outFS) throws IOException {
if(sInf != null) {
writePropertySet("\005SummaryInformation",sInf,outFS);
writePropertySet(SummaryInformation.DEFAULT_STREAM_NAME,sInf,outFS);
}
if(dsInf != null) {
writePropertySet("\005DocumentSummaryInformation",dsInf,outFS);
writePropertySet(DocumentSummaryInformation.DEFAULT_STREAM_NAME,dsInf,outFS);
}
}