Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2009-01-20 05:14:50 +0000
committerPawel Piech2009-01-20 05:14:50 +0000
commit83cfbbe108e32e15ffc207c0f8713e2641db44d3 (patch)
tree900489a222fc691208048fb340be68ea11eecc73 /org.eclipse.debug.examples.core
parent9e42165b62883aecb2c64c46736424b5c95239c8 (diff)
downloadeclipse.platform.debug-83cfbbe108e32e15ffc207c0f8713e2641db44d3.tar.gz
eclipse.platform.debug-83cfbbe108e32e15ffc207c0f8713e2641db44d3.tar.xz
eclipse.platform.debug-83cfbbe108e32e15ffc207c0f8713e2641db44d3.zip
Fixed bug related to PDA line numbers.
Diffstat (limited to 'org.eclipse.debug.examples.core')
-rw-r--r--org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/protocol/PDAClearBreakpointCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/protocol/PDAClearBreakpointCommand.java b/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/protocol/PDAClearBreakpointCommand.java
index 9522b007d..c04c2bed4 100644
--- a/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/protocol/PDAClearBreakpointCommand.java
+++ b/org.eclipse.debug.examples.core/src/org/eclipse/debug/examples/core/protocol/PDAClearBreakpointCommand.java
@@ -22,7 +22,7 @@ package org.eclipse.debug.examples.core.protocol;
public class PDAClearBreakpointCommand extends PDACommand {
public PDAClearBreakpointCommand(int line) {
- super("clear " + (line - 1));
+ super("clear " + line);
}
public PDACommandResult createResult(String resultText) {

Back to the top