Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Jun 16, 2024
1 parent 656accd commit 0cb04bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/Famix-Diff-ChangeModel/FamixChange.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ FamixChange >> isKindOfAddition [

{ #category : #testing }
FamixChange >> isMatch [
"A change is considered as a match if we are able to find an entity in the base and target model. This can be an identical entity but alse a renamed or moved entity."

^ false
]

Expand Down
3 changes: 2 additions & 1 deletion src/Famix-Diff-ChangeModel/FamixPairedChange.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ FamixPairedChange >> hash [

{ #category : #testing }
FamixPairedChange >> isMatch [
"A change is considered as a match if we are able to find an entity in the base and target model. This can be an identical entity but alse a renamed or moved entity."

^true
^ true
]

{ #category : #accessing }
Expand Down

0 comments on commit 0cb04bb

Please sign in to comment.