mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +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:
parent
0215bdc330
commit
01a1046fa1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue