mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-05 07:15:39 +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;
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue