1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 23:05:47 +02:00

[180562][api] removing implementers of IRSEDOMConstants

This commit is contained in:
David Dykstal 2007-04-03 00:05:07 +00:00
parent d0fef66f3c
commit b68729222e
2 changed files with 3 additions and 3 deletions

View file

@ -33,12 +33,12 @@ public class RSEDOM extends RSEDOMNode {
private transient ISystemProfile _profile;
public RSEDOM(ISystemProfile profile) {
super(null, TYPE_PROFILE, profile.getName());
super(null, IRSEDOMConstants.TYPE_PROFILE, profile.getName());
_profile = profile;
}
public RSEDOM(String profileName) {
super(null, TYPE_PROFILE, profileName);
super(null, IRSEDOMConstants.TYPE_PROFILE, profileName);
_profile = null;
}

View file

@ -20,7 +20,7 @@ import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class RSEDOMNode implements IRSEDOMConstants, Serializable {
public class RSEDOMNode implements Serializable {
/*
* Recommended for serializable objects. This should be updated if there is a schema change.
*/