mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-07 16:26:11 +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:
parent
89742720d0
commit
3eb8e4146f
1 changed files with 1 additions and 11 deletions
|
@ -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<IProcessDMContext> {
|
|||
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);
|
||||
|
|
Loading…
Add table
Reference in a new issue