Skip to content

Commit 158e32e

Browse files
committed
ST6RI-897 Removed non-generation of getSpecific and getRedefinedFeature.
- This was left over and no longer necessary.
1 parent b88e84c commit 158e32e

2 files changed

Lines changed: 3 additions & 7 deletions

File tree

org.omg.sysml/syntax-gen/org/omg/sysml/lang/sysml/impl/RedefinitionImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public void setRedefiningFeature(Feature newRedefiningFeature) {
123123
* <!-- begin-user-doc -->
124124
* <!-- end-user-doc -->
125125
*
126-
* @generated NOT
126+
* @generated
127127
*/
128128
public boolean isSetRedefiningFeature() {
129129
return redefiningFeature != null;

org.omg.sysml/syntax-gen/org/omg/sysml/lang/sysml/impl/SpecializationImpl.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,17 +193,13 @@ public void setSpecific(Type newSpecific) {
193193
eNotify(new ENotificationImpl(this, Notification.SET, SysMLPackage.SPECIALIZATION__SPECIFIC, oldSpecific, specific));
194194
}
195195

196-
public void basicSetSpecific(Type newSpecific) {
197-
setSpecific(newSpecific);
198-
}
199-
200196
/**
201197
* <!-- begin-user-doc -->
202198
* <!-- end-user-doc -->
203-
* @generated NOT
199+
* @generated
204200
*/
205201
public boolean isSetSpecific() {
206-
return basicGetSpecific() != null;
202+
return specific != null;
207203
}
208204

209205
/**

0 commit comments

Comments
 (0)