I didn't see a respone to the following message, and I see that both items
still occur in build 609.

More information to reproduce #2:  the debugger will not stop at a
breakpoint on the first line inside of the finally block but it will stop at
breakpoints on other lines.

-sms

-----Original Message-----
From: Scott Sirovy [mailto:[EMAIL PROTECTED]]
Sent: Tue, February 26, 2002 12:36 PM
To: IDEA List (E-mail)
Subject: [Eap-list] 605 - two things


605, win2k sp2, jdk 131_02

1) When editing Text, XML, and HTML files, Shift-F1 anywhere gives a message
"No element selected - Please select the element for which you wish to view
the documentation".  If this functionality doesn't make sense for these file
types, I'd expect IDEA to not respond at all to the keystrokes.

2) I can't get IDEA to stop on a breakpoint inside a "finally" clause of a
try-catch block.  Try this code:

package com;
public class Testerizer {
    public Testerizer() {
        try {
            System.out.println("try");
            throw new Exception();
        }
        catch (Exception e) {
            System.out.println("catch");
        }
        finally {
            System.out.println("finally");
        }
    }
    public static void main(String[] args) {
        new Testerizer();
    }
}


I put breakpoints on each of the System.out.println() lines.  When running
in debug mode, only the first two breakpoints are hit, the last is executed,
but no break happens.


-sms

-------------------------------------------------- 
DISCLAIMER 
This e-mail, and any attachments thereto, is intended only for use by the
addressee(s) named herein and may contain legally privileged and/or
confidential information.  If you are not the intended recipient of this
e-mail, you are hereby notified that any dissemination, distribution or
copying of this e-mail, and any attachments thereto, is strictly prohibited.
If you have received this e-mail in error, please immediately notify me and
permanently delete the original and any copy of any e-mail and any printout
thereof. 

E-mail transmission cannot be guaranteed to be secure or error-free.  The
sender therefore does not accept liability for any errors or omissions in
the contents of this message which arise as a result of e-mail transmission.

NOTICE REGARDING PRIVACY AND CONFIDENTIALITY 

Knight Trading Group may, at its discretion, monitor and review the content
of all e-mail communications. 


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

Reply via email to