src/solaris/classes/sun/awt/X11/XWindowPeer.java

Print this page
rev 9830 : 8039642: Fix raw and unchecked warnings in sun.awt.*
Reviewed-by: darcy, prr

@@ -948,11 +948,11 @@
     private void lowerOverrideRedirect() {
         //
         // make new hash of toplevels of all windows from 'windows' hash.
         // FIXME: do not call them "toplevel" as it is misleading.
         //
-        HashSet toplevels = new HashSet();
+        HashSet<Long> toplevels = new HashSet<>();
         long topl = 0, mytopl = 0;
 
         for (XWindowPeer xp : windows) {
             topl = getToplevelWindow( xp.getWindow() );
             if( xp.equals( this ) ) {