From ae2b10f980d0ae9f0246b87afc36a0df546ea018 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Fri, 13 Feb 2015 16:12:45 -0500 Subject: [PATCH] Parametrize type Signed-off-by: Marc Khouzam --- .../src/org/eclipse/cdt/dsf/concurrent/DsfExecutable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/DsfExecutable.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/DsfExecutable.java index 361e2a827cb..7f6564e5e49 100644 --- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/DsfExecutable.java +++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/DsfExecutable.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2006, 2010 Wind River Systems and others. + * Copyright (c) 2006, 2014 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 @@ -123,7 +123,7 @@ public class DsfExecutable { // Get the stack trace and find the first method that is not a // constructor of this object. StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace(); - Class thisClass = getClass(); + Class thisClass = getClass(); Set classNamesSet = new HashSet(); while(thisClass != null) { classNamesSet.add(thisClass.getName());