mirror of https://github.com/apache/poi.git
Ensure that the core properties are there before saving them, in case they have not yet been lazy-created
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1662971 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9b84116192
commit
e43ab85691
|
@ -443,7 +443,9 @@ public final class ZipPackage extends Package {
|
|||
if (this.getPartsByRelationshipType(PackageRelationshipTypes.CORE_PROPERTIES).size() == 0 &&
|
||||
this.getPartsByRelationshipType(PackageRelationshipTypes.CORE_PROPERTIES_ECMA376).size() == 0 ) {
|
||||
logger.log(POILogger.DEBUG,"Save core properties part");
|
||||
|
||||
|
||||
// Ensure that core properties are added if missing
|
||||
getPackageProperties();
|
||||
// Add core properties to part list ...
|
||||
addPackagePart(this.packageProperties);
|
||||
// ... and to add its relationship ...
|
||||
|
|
Loading…
Reference in New Issue