Fix generics warnings
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@897239 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7ae86fab09
commit
a6e7575999
@ -235,7 +235,7 @@ public final class PowerPointExtractor extends POIOLE2TextExtractor {
|
|||||||
// Not currently using _notes, as that can have the notes of
|
// Not currently using _notes, as that can have the notes of
|
||||||
// master sheets in. Grab Slide list, then work from there,
|
// master sheets in. Grab Slide list, then work from there,
|
||||||
// but ensure no duplicates
|
// but ensure no duplicates
|
||||||
HashSet seenNotes = new HashSet();
|
HashSet<Integer> seenNotes = new HashSet<Integer>();
|
||||||
HeadersFooters hf = _show.getNotesHeadersFooters();
|
HeadersFooters hf = _show.getNotesHeadersFooters();
|
||||||
|
|
||||||
for (int i = 0; i < _slides.length; i++) {
|
for (int i = 0; i < _slides.length; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user