Skip to content

Commit

Permalink
Merge pull request #2084 from astares/22760-RBRefactoryClassChange-sh…
Browse files Browse the repository at this point in the history
…ould-define-isAbstract-with-true

22760 RBRefactoryClassChange should define #isAbstract with true
  • Loading branch information
MarcusDenker committed Dec 18, 2018
2 parents 4b48538 + b9d0de2 commit da17558
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Refactoring-Changes/RBRefactoryClassChange.class.st
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"
I am the baseclass for a ""class change"" refactoring change. I know about the
I am the abstract baseclass for a ""class change"" refactoring change. I know about the
class(name) whether it is a change for for the meta or the instance side.
I keep track of the undo and redo operation, but the concrete class change operation is implement by my subclasses.
Expand All @@ -14,6 +14,11 @@ Class {
#category : #'Refactoring-Changes'
}

{ #category : #testing }
RBRefactoryClassChange class >> isAbstract [
^self name = #RBRefactoryClassChange
]

{ #category : #comparing }
RBRefactoryClassChange >> = aRefactoryClassChange [
self class = aRefactoryClassChange class
Expand Down

0 comments on commit da17558

Please sign in to comment.