mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 08:55:25 +02:00
Bug 321932 - Removed a constant accidentally added to the API in last checkin.
This commit is contained in:
parent
789b954cc0
commit
ad14e00615
2 changed files with 2 additions and 2 deletions
|
@ -35,8 +35,6 @@ import org.eclipse.core.runtime.PlatformObject;
|
|||
abstract public class AbstractDMContext extends PlatformObject
|
||||
implements IDMContext
|
||||
{
|
||||
public static final IDMContext[] EMPTY_PARENTS_ARRAY = new IDMContext[0];
|
||||
|
||||
private final String fSessionId;
|
||||
private final IDMContext[] fParents;
|
||||
|
||||
|
|
|
@ -50,6 +50,8 @@ public class TestModel extends AbstractDsfService implements IFormattedValues {
|
|||
}
|
||||
|
||||
public static class TestElement extends AbstractDMContext implements IFormattedDataDMContext {
|
||||
public static final IDMContext[] EMPTY_PARENTS_ARRAY = new IDMContext[0];
|
||||
|
||||
private final TestModel fModel;
|
||||
private final String fID;
|
||||
TestElement[] fChildren;
|
||||
|
|
Loading…
Add table
Reference in a new issue