1
0
Fork 0
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:
Pawel Piech 2010-09-28 17:44:52 +00:00
parent 789b954cc0
commit ad14e00615
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;