1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 312817 - backed out changes of bug 310992

This commit is contained in:
Anton Leherbauer 2010-05-20 07:10:59 +00:00
parent 22e14a8102
commit cc85b9e8e5

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2008, 2010 Wind River Systems, Inc. and others. * Copyright (c) 2008 Wind River Systems, Inc. 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
@ -58,9 +58,11 @@ public class DelayedStackRefreshUpdatePolicy extends UpdatePolicyDecorator {
if (((IFrameDMContext) dmc).getLevel() == 0) { if (((IFrameDMContext) dmc).getLevel() == 0) {
return FLUSH; return FLUSH;
} }
} else if (dmc instanceof IExecutionDMContext) {
return fBaseTester.getUpdateFlags(viewerInput, path);
} }
return DIRTY; return DIRTY;
} else if (dmc instanceof IExecutionDMContext) { } else if (dmc instanceof IContainerDMContext) {
return fBaseTester.getUpdateFlags(viewerInput, path); return fBaseTester.getUpdateFlags(viewerInput, path);
} }
} }