From ef8906cc1d814dfc03d2a087c9f1fff05c1b08a4 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Tue, 6 Oct 2015 13:12:58 -0400 Subject: [PATCH] Cosmetics Signed-off-by: Marc Khouzam --- .../ui/viewmodel/launch/AbstractContainerVMNode.java | 4 ++-- .../debug/ui/viewmodel/launch/AbstractThreadVMNode.java | 8 ++++---- .../viewmodel/launch/DelayedStackRefreshUpdatePolicy.java | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/AbstractContainerVMNode.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/AbstractContainerVMNode.java index 430b3f0f759..8948fa044e9 100644 --- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/AbstractContainerVMNode.java +++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/AbstractContainerVMNode.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2008, 2013 Wind River Systems, Inc. and others. + * Copyright (c) 2008, 2015 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -397,7 +397,7 @@ public abstract class AbstractContainerVMNode extends AbstractExecutionContextVM if (refreshEvent.getTriggeringEvent() instanceof IContainerSuspendedDMEvent) { // For a full container suspended event, issue a single change when we get // a FullStackRefreshEvent. This avoids refreshing all threads, even those - // there are not visible + // that are not visible // bug 386175 IContainerSuspendedDMEvent containerTriggerEvent = (IContainerSuspendedDMEvent)refreshEvent.getTriggeringEvent(); diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/AbstractThreadVMNode.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/AbstractThreadVMNode.java index ef2ad9eafbf..17d3d2a4ffe 100644 --- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/AbstractThreadVMNode.java +++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/AbstractThreadVMNode.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2006, 2011 Wind River Systems and others. + * Copyright (c) 2006, 2015 Wind River Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -243,7 +243,7 @@ public abstract class AbstractThreadVMNode extends AbstractExecutionContextVMNod } else if (e instanceof SteppingTimedOutEvent && ((SteppingTimedOutEvent)e).getDMContext() instanceof IContainerDMContext) { - // The timed out event occured on a container and not on a thread. Do not + // The timed out event occurred on a container and not on a thread. Do not // return a context for this event, which will force the view model to generate // a delta for all the threads. rm.setStatus(new Status(IStatus.ERROR, DsfUIPlugin.PLUGIN_ID, IDsfStatusConstants.NOT_SUPPORTED, "", null)); //$NON-NLS-1$ @@ -252,7 +252,7 @@ public abstract class AbstractThreadVMNode extends AbstractExecutionContextVMNod } else if (e instanceof FullStackRefreshEvent && ((FullStackRefreshEvent)e).getDMContext() instanceof IContainerDMContext) { - // The step sequence end event occured on a container and not on a thread. Do not + // The step sequence end event occurred on a container and not on a thread. Do not // return a context for this event, which will force the view model to generate // a delta for all the threads. rm.setStatus(new Status(IStatus.ERROR, DsfUIPlugin.PLUGIN_ID, IDsfStatusConstants.NOT_SUPPORTED, "", null)); //$NON-NLS-1$ @@ -371,7 +371,7 @@ public abstract class AbstractThreadVMNode extends AbstractExecutionContextVMNod // Also IContainerResumedDMEvent sub-classes IResumedDMEvent and // IContainerSuspendedDMEvnet sub-classes ISuspendedEvent. // Because of this relationship, the thread VM node can be called - // with data-model evnets for the containers. This statement + // with data-model events for the containers. This statement // filters out those event. rm.done(); } else if(e instanceof IResumedDMEvent) { diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/DelayedStackRefreshUpdatePolicy.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/DelayedStackRefreshUpdatePolicy.java index eb84876f10f..aa0d27aa7ea 100644 --- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/DelayedStackRefreshUpdatePolicy.java +++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/DelayedStackRefreshUpdatePolicy.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2008, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2008, 2015 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -27,7 +27,7 @@ import org.eclipse.jface.viewers.TreePath; /** * An update strategy decorator specialized for delayed stack frame refresh. The * strategy flushes only the cached top stack frame in case of an normal {@link ISuspendedDMEvent}, - * while in in case of a special {@link FullStackRefreshEvent} everything is invalidated. + * while in case of a special {@link FullStackRefreshEvent} everything is invalidated. * *

* The underlying base update policy is considered for container contexts only.