Here is an example code snippet:

    BufferedReader reader = 
        new BufferedReader( new FileReader( sourceFile ) );
    String line;
    while( ( line = reader.readLine() ) != null )
    {
        buffer.append( line );
    }
    reader.close();

When I execute this in the debugger, I cannot display the contents of the 
"line" variable. It seems as if variable assignments within conditional 
clauses aren't recognized by the debugger. I don't know if this is a JDK 
1.4 issue or a bug in Idea.

Bill U.
_______________________________________________
Eap-bugs mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-bugs

Reply via email to