Bugs item #769764, was opened at 2003-07-11 12:17
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=769764&group_id=44253
Category: Debugger
Group: Serious
Status: Open
Resolution: None
Priority: 5
Submitted By: Yevgeniy Makarov (emakarov)
Assigned to: Nobody/Anonymous (nobody)
Summary: Debugger does not stop on a breakpoint
Initial Comment:
I have a program consisting of two files.
File Abcdefgh.java:
public class Abcdefgh
{
public void f()
{
int i=0;
}
}
File Abcdefghi.java:
public class Abcdefghi
{
public static void main(String[] args)
{
new Abcdefgh().f();
}
}
When I set a breakpoint on the line "int i=0;" in
Abcdefgh.java in the debugger mode and type "java
Abcdefghi" in the interaction window, the program run
through and does not stop at the breakpoint.
I suspect that the problem is that the first 8
characters of the two file names (and classes) are the
same. When I change Abcdefghi to Abcdefgzi the debugger
does stop at the breakpoint.
Thank you,
Yevgeniy
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=769764&group_id=44253
|