mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-05 23:35:48 +02:00
[180562][api] removing implementers of IRSEDOMConstants
This commit is contained in:
parent
d0fef66f3c
commit
b68729222e
2 changed files with 3 additions and 3 deletions
|
@ -33,12 +33,12 @@ public class RSEDOM extends RSEDOMNode {
|
||||||
private transient ISystemProfile _profile;
|
private transient ISystemProfile _profile;
|
||||||
|
|
||||||
public RSEDOM(ISystemProfile profile) {
|
public RSEDOM(ISystemProfile profile) {
|
||||||
super(null, TYPE_PROFILE, profile.getName());
|
super(null, IRSEDOMConstants.TYPE_PROFILE, profile.getName());
|
||||||
_profile = profile;
|
_profile = profile;
|
||||||
}
|
}
|
||||||
|
|
||||||
public RSEDOM(String profileName) {
|
public RSEDOM(String profileName) {
|
||||||
super(null, TYPE_PROFILE, profileName);
|
super(null, IRSEDOMConstants.TYPE_PROFILE, profileName);
|
||||||
_profile = null;
|
_profile = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ import java.io.Serializable;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
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.
|
* Recommended for serializable objects. This should be updated if there is a schema change.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue