Author: nick
Date: Fri Jan  8 16:02:35 2010
New Revision: 897239

URL: http://svn.apache.org/viewvc?rev=897239&view=rev
Log:
Fix generics warnings

Modified:
    
poi/trunk/src/scratchpad/src/org/apache/poi/hslf/extractor/PowerPointExtractor.java

Modified: 
poi/trunk/src/scratchpad/src/org/apache/poi/hslf/extractor/PowerPointExtractor.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/extractor/PowerPointExtractor.java?rev=897239&r1=897238&r2=897239&view=diff
==============================================================================
--- 
poi/trunk/src/scratchpad/src/org/apache/poi/hslf/extractor/PowerPointExtractor.java
 (original)
+++ 
poi/trunk/src/scratchpad/src/org/apache/poi/hslf/extractor/PowerPointExtractor.java
 Fri Jan  8 16:02:35 2010
@@ -235,7 +235,7 @@
                        // Not currently using _notes, as that can have the 
notes of
                        // master sheets in. Grab Slide list, then work from 
there,
                        // but ensure no duplicates
-                       HashSet seenNotes = new HashSet();
+                       HashSet<Integer> seenNotes = new HashSet<Integer>();
                        HeadersFooters hf = _show.getNotesHeadersFooters();
 
                        for (int i = 0; i < _slides.length; i++) {



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to