|
From: Markus B. <mba...@us...> - 2005-10-03 07:16:36
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/model In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20910/src/org/rubypeople/rdt/internal/debug/core/model Modified Files: RubyDebugTarget.java Log Message: merged from SRB_0-6-1_1 Index: RubyDebugTarget.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/model/RubyDebugTarget.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** RubyDebugTarget.java 29 Aug 2005 16:05:48 -0000 1.9 --- RubyDebugTarget.java 3 Oct 2005 07:16:25 -0000 1.10 *************** *** 174,179 **** public void breakpointChanged(IBreakpoint breakpoint, IMarkerDelta arg1) { // is called e.g. after a line has been inserted before a breakpoint ! // but then the debugger is out of sync with the file anyway, so debugging ! // should be stopped here. } --- 174,184 ---- public void breakpointChanged(IBreakpoint breakpoint, IMarkerDelta arg1) { // is called e.g. after a line has been inserted before a breakpoint ! // or the enablement status has changed ! // in the first case it is essential that the debugger has reloaded the file ! // so that the breakpoint moving is in synch with the new file ! if (isTerminated) { ! return ; ! } ! this.getRubyDebuggerProxy().updateBreakpoint(breakpoint, arg1) ; } |