File tree 1 file changed +3
-4
lines changed
poi-scratchpad/src/main/java/org/apache/poi/hslf/usermodel
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -74,12 +74,11 @@ public byte[] getData() {
74
74
*/
75
75
public static HSLFSoundData [] find (Document document ){
76
76
ArrayList <HSLFSoundData > lst = new ArrayList <>();
77
- org .apache .poi .hslf .record .Record [] ch = document .getChildRecords ();
78
- for (Record value : ch ) {
77
+ for (org .apache .poi .hslf .record .Record value : document .getChildRecords ()) {
79
78
if (value .getRecordType () == RecordTypes .SoundCollection .typeID ) {
80
79
RecordContainer col = (RecordContainer ) value ;
81
- Record [] sr = col .getChildRecords ();
82
- for (Record record : sr ) {
80
+ org . apache . poi . hslf . record . Record [] sr = col .getChildRecords ();
81
+ for (org . apache . poi . hslf . record . Record record : sr ) {
83
82
if (record instanceof Sound ) {
84
83
lst .add (new HSLFSoundData ((Sound ) record ));
85
84
}
You can’t perform that action at this time.
0 commit comments