If you introduce a variable  in 
        ...
        while ( i++ < 19 ) 


the following code :
--------------------
        int i = 0;
        do      {
            System.out.println ( "i = " + i );
        }
        while ( ++i < 19 ) ;



becomes :
---------

        int i = 0;
        boolean condition = ++i < 19;
        do        {
            System.out.println ( "i = " + i );
        }
        while ( condition ) ;


it should have become :
-----------------------
        int i = 0;
        boolean condition ;
        do        {
            System.out.println ( "i = " + i );
            condition = ++i < 19;
        }
        while ( condition ) ;

Alain Ravet


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

Reply via email to