From 3eb8e4146fcdbd73000aa86009b1a31230437644 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Tue, 13 Oct 2015 10:56:59 -0400 Subject: [PATCH] Remove deprecated constructor. The constructor MIThreadGroupExitedEvent(IProcessDMContext, int, String) has been removed. MIThreadGroupExitedEvent(IProcessDMContext ctx, int, MIResult[]) instead. Change-Id: I1314f63e98b654daab81e30602c14b3e44c7a128 --- .../command/events/MIThreadGroupExitedEvent.java | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/events/MIThreadGroupExitedEvent.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/events/MIThreadGroupExitedEvent.java index d698bc8a184..b136a48e921 100644 --- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/events/MIThreadGroupExitedEvent.java +++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/events/MIThreadGroupExitedEvent.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2008, 2013 Ericsson and others. + * Copyright (c) 2008, 2015 Ericsson 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 @@ -29,16 +29,6 @@ public class MIThreadGroupExitedEvent extends MIEvent { private String fGroupId; private String fExitCode; - /** - * @deprecated - */ - @Deprecated - public MIThreadGroupExitedEvent(IProcessDMContext ctx, int token, String groupId) { - super(ctx, token, null); - fGroupId = groupId; - fExitCode = null; - } - /** @since 4.2 */ public MIThreadGroupExitedEvent(IProcessDMContext ctx, int token, MIResult[] results) { super(ctx, token, results);