Still present in #635. I kinda hoped it would go away with JDK 1.4.1_01. :(
-sms "Scott Sirovy" <[EMAIL PROTECTED]> wrote in message news:abrbii$mgq$[EMAIL PROTECTED]... > I've reported this in the past but have not seen an official reply, so here > it is again. Just doing my beta-testing duties. ;) > > -sms > > > /** > * This class demonstrates a bug in the debugger of IDEA versions 605-621. > * Put a breakpoint on the first executable line in the > * finally block -- it never gets hit. > */ > public class Testerizer { > public Testerizer() { > try { > System.out.println("try"); > throw new Exception(); > } > catch (Exception e) { > System.out.println("catch"); > } > finally { > test(); > System.out.println("finally"); > } > } > > public void test() { > System.out.println("finally calls test()"); > } > > public static void main(String[] args) { > new Testerizer(); > } > } > > _______________________________________________ Eap-bugs mailing list [EMAIL PROTECTED] http://lists.jetbrains.com/mailman/listinfo/eap-bugs
