Community
Participate
Working Groups
Build ID: I20080617-2000 Steps To Reproduce: 1. Find a large .java file 2. Set a breakpoint at a line > 65536 3. Run program More information: You will notice that even if your code runs, that your breakpoint will never be triggered. Another issue (java related I believe) is that an exception found in this area is reporting the wrong line number. I have one reporting line number 272 instead of 65808.
This is a Java limitation. Line number debug attributes in class files are 16 bit unsigned integers - resulting in a max line number of 65535.
*** Bug 547731 has been marked as a duplicate of this bug. ***