From: PJ Fanning Date: Fri, 8 Jun 2018 23:15:46 +0000 (+0000) Subject: fix some deprecation warnings X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F112%2Fhead;p=poi.git fix some deprecation warnings git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1833218 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/ooxml/java/org/apache/poi/ooxml/POIXMLProperties.java b/src/ooxml/java/org/apache/poi/ooxml/POIXMLProperties.java index 04ca65fb21..06c9eec129 100644 --- a/src/ooxml/java/org/apache/poi/ooxml/POIXMLProperties.java +++ b/src/ooxml/java/org/apache/poi/ooxml/POIXMLProperties.java @@ -569,7 +569,7 @@ public class POIXMLProperties { */ protected int nextPid() { int propid = 1; - for(CTProperty p : props.getProperties().getPropertyArray()){ + for(CTProperty p : props.getProperties().getPropertyList()) { if(p.getPid() > propid) propid = p.getPid(); } return propid + 1; @@ -582,7 +582,7 @@ public class POIXMLProperties { * @return whether a property with the given name exists in the custom properties */ public boolean contains(String name) { - for(CTProperty p : props.getProperties().getPropertyArray()){ + for(CTProperty p : props.getProperties().getPropertyList()) { if(p.getName().equals(name)) return true; } return false; @@ -600,7 +600,7 @@ public class POIXMLProperties { * @return the custom property with this name, or null if none exists */ public CTProperty getProperty(String name) { - for(CTProperty p : props.getProperties().getPropertyArray()){ + for(CTProperty p : props.getProperties().getPropertyList()) { if(p.getName().equals(name)) { return p; } diff --git a/src/ooxml/java/org/apache/poi/ooxml/extractor/POIXMLPropertiesTextExtractor.java b/src/ooxml/java/org/apache/poi/ooxml/extractor/POIXMLPropertiesTextExtractor.java index 47c37e84b4..80e875b14b 100644 --- a/src/ooxml/java/org/apache/poi/ooxml/extractor/POIXMLPropertiesTextExtractor.java +++ b/src/ooxml/java/org/apache/poi/ooxml/extractor/POIXMLPropertiesTextExtractor.java @@ -84,7 +84,7 @@ public class POIXMLPropertiesTextExtractor extends POIXMLTextExtractor { text.append(thing); text.append(" = "); text.append(value); - text.append("\n"); + text.append('\n'); } /** @@ -178,7 +178,7 @@ public class POIXMLPropertiesTextExtractor extends POIXMLTextExtractor { org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperties props = document.getProperties().getCustomProperties().getUnderlyingProperties(); - for (CTProperty property : props.getPropertyArray()) { + for (CTProperty property : props.getPropertyList()) { String val = "(not implemented!)"; if (property.isSetLpwstr()) {