1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 08:45:44 +02:00

Remove deprecated constructor.

The constructor MIThreadGroupExitedEvent(IProcessDMContext, int, String)
has been removed.  MIThreadGroupExitedEvent(IProcessDMContext ctx, int,
MIResult[]) instead.

Change-Id: I1314f63e98b654daab81e30602c14b3e44c7a128
This commit is contained in:
Marc Khouzam 2015-10-13 10:56:59 -04:00
parent 89742720d0
commit 3eb8e4146f

View file

@ -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 * 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
@ -29,16 +29,6 @@ public class MIThreadGroupExitedEvent extends MIEvent<IProcessDMContext> {
private String fGroupId; private String fGroupId;
private String fExitCode; private String fExitCode;
/**
* @deprecated
*/
@Deprecated
public MIThreadGroupExitedEvent(IProcessDMContext ctx, int token, String groupId) {
super(ctx, token, null);
fGroupId = groupId;
fExitCode = null;
}
/** @since 4.2 */ /** @since 4.2 */
public MIThreadGroupExitedEvent(IProcessDMContext ctx, int token, MIResult[] results) { public MIThreadGroupExitedEvent(IProcessDMContext ctx, int token, MIResult[] results) {
super(ctx, token, results); super(ctx, token, results);