]> source.dussan.org Git - poi.git/commitdiff
fix some deprecation warnings
authorPJ Fanning <fanningpj@apache.org>
Fri, 8 Jun 2018 23:15:46 +0000 (23:15 +0000)
committerPJ Fanning <fanningpj@apache.org>
Fri, 8 Jun 2018 23:15:46 +0000 (23:15 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1833218 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/ooxml/POIXMLProperties.java
src/ooxml/java/org/apache/poi/ooxml/extractor/POIXMLPropertiesTextExtractor.java

index 04ca65fb214248ffc2fae066f70b382b0f3e023a..06c9eec1290f2fbefcd5bacdaee94f7ada797709 100644 (file)
@@ -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;
                 }
index 47c37e84b4374eb0d438e981fe4447259657a4bf..80e875b14b7f734e2fa0c6a25f57d43fa2006112 100644 (file)
@@ -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()) {