Iterator iter = table.getChildren( "field" ).iterator();
        
        while (iter.ha 


If u press Ctrl-Shift-Space IDEA will complete to:


        Iterator iter = table.getChildren( "field" ).iterator();
                
        while (iter.hasNext() )


I would prefer that IDEA completes the opening bracket too:

        Iterator iter = table.getChildren( "field" ).iterator();
        
        while (iter.hasNext() ){
                        

                        

Johannes Schneider

        

_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features

Reply via email to