|
From: David C. <dc...@us...> - 2005-10-02 19:20:44
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12621/src/org/rubypeople/rdt/internal/debug/core Modified Files: RubyLineBreakpoint.java RubyDebuggerProxy.java Log Message: Cleanup a whole bunch of 'unused warnings" Index: RubyDebuggerProxy.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/RubyDebuggerProxy.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** RubyDebuggerProxy.java 18 Jan 2005 22:19:14 -0000 1.15 --- RubyDebuggerProxy.java 1 Oct 2005 23:11:09 -0000 1.16 *************** *** 299,311 **** class RubyLoop extends Thread { - private boolean shouldStop; public RubyLoop() { - shouldStop = false; this.setName("RubyDebuggerLoop"); } public void setShouldStop() { - shouldStop = true; } --- 299,308 ---- Index: RubyLineBreakpoint.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/RubyLineBreakpoint.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RubyLineBreakpoint.java 20 Mar 2004 15:37:09 -0000 1.5 --- RubyLineBreakpoint.java 1 Oct 2005 23:11:09 -0000 1.6 *************** *** 8,12 **** import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.debug.core.DebugException; - import org.eclipse.debug.core.DebugPlugin; import org.eclipse.debug.core.model.LineBreakpoint; --- 8,11 ---- *************** *** 32,39 **** } - private void register() throws CoreException { - DebugPlugin.getDefault().getBreakpointManager().addBreakpoint(this); - } - public int getLineNumber() throws CoreException { return ensureMarker().getAttribute(IMarker.LINE_NUMBER, -1); --- 31,34 ---- |