]> source.dussan.org Git - poi.git/commitdiff
java 17 compile issue
authorPJ Fanning <fanningpj@apache.org>
Sat, 16 Jul 2022 20:12:56 +0000 (20:12 +0000)
committerPJ Fanning <fanningpj@apache.org>
Sat, 16 Jul 2022 20:12:56 +0000 (20:12 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902783 13f79535-47bb-0310-9956-ffa450edef68

poi-scratchpad/src/main/java/org/apache/poi/hslf/usermodel/HSLFSoundData.java

index 10b299cf4f918534c2caec00a74dd602252fa89f..ff948fd69ee5cea19096ed3d61b583f9f20895fc 100644 (file)
@@ -74,12 +74,11 @@ public final class HSLFSoundData {
      */
     public static HSLFSoundData[] find(Document document){
         ArrayList<HSLFSoundData> lst = new ArrayList<>();
-        org.apache.poi.hslf.record.Record[] ch = document.getChildRecords();
-        for (Record value : ch) {
+        for (org.apache.poi.hslf.record.Record value : document.getChildRecords()) {
             if (value.getRecordType() == RecordTypes.SoundCollection.typeID) {
                 RecordContainer col = (RecordContainer) value;
-                Record[] sr = col.getChildRecords();
-                for (Record record : sr) {
+                org.apache.poi.hslf.record.Record[] sr = col.getChildRecords();
+                for (org.apache.poi.hslf.record.Record record : sr) {
                     if (record instanceof Sound) {
                         lst.add(new HSLFSoundData((Sound) record));
                     }