1
0
Fork 0
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:
Anton Leherbauer 2010-04-22 09:22:23 +00:00
parent b614dc1db2
commit cb4be96604

View file

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