Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/dsf
diff options
context:
space:
mode:
authorJesper Eskilson2015-04-21 13:51:56 +0000
committerGerrit Code Review @ Eclipse.org2015-05-02 00:42:11 +0000
commit01a1046fa1516a62344ed05ce314cb5dffb8d3b5 (patch)
tree9ebb11d3fc78b57c5f689d9a31de4814cdd4d437 /dsf
parent0215bdc330972a1bd71ac24d6c174935cde082c5 (diff)
downloadorg.eclipse.cdt-01a1046fa1516a62344ed05ce314cb5dffb8d3b5.tar.gz
org.eclipse.cdt-01a1046fa1516a62344ed05ce314cb5dffb8d3b5.tar.xz
org.eclipse.cdt-01a1046fa1516a62344ed05ce314cb5dffb8d3b5.zip
Fixed copy-paste-bug causing the wrong variable to be checked in a
conditional. Change-Id: I4156b612b955dc5ac648b4d331ac9537f8b182f9 Signed-off-by: Jesper Eskilson <jesper.eskilson@iar.com>
Diffstat (limited to 'dsf')
-rw-r--r--dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/breakpoints/DsfTestBreakpoints.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/breakpoints/DsfTestBreakpoints.java b/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/breakpoints/DsfTestBreakpoints.java
index 1b6764760fd..efee37d9fb9 100644
--- a/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/breakpoints/DsfTestBreakpoints.java
+++ b/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/breakpoints/DsfTestBreakpoints.java
@@ -262,7 +262,7 @@ public class DsfTestBreakpoints extends AbstractDsfService implements IBreakpoin
}
Integer subId = (Integer)attributes.get(ATTR_SUB_ID);
- if (id == null) {
+ if (subId == null) {
DsfTestPlugin.failRequest(rm, REQUEST_FAILED, "No Sub ID specified");
return;
}

Back to the top