mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
[309910] [vm] Constructor of AbstractDMVMNode.DMVMContext should assert dmc != null
This commit is contained in:
parent
b614dc1db2
commit
cb4be96604
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006, 2009 Wind River Systems and others.
|
* Copyright (c) 2006, 2010 Wind River Systems and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -55,6 +55,7 @@ abstract public class AbstractDMVMNode extends AbstractVMNode implements IVMNode
|
||||||
|
|
||||||
public DMVMContext(IDMContext dmc) {
|
public DMVMContext(IDMContext dmc) {
|
||||||
super(AbstractDMVMNode.this);
|
super(AbstractDMVMNode.this);
|
||||||
|
assert dmc != null;
|
||||||
fDmc = dmc;
|
fDmc = dmc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue