1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

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>
This commit is contained in:
Jesper Eskilson 2015-04-21 15:51:56 +02:00 committed by Gerrit Code Review @ Eclipse.org
parent 0215bdc330
commit 01a1046fa1

View file

@ -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;
}