Skip to content

Commit

Permalink
Improve #printOn:
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Jun 3, 2024
1 parent a917b15 commit 1f292b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Famix-Diff-ChangeModel/FamixChange.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ FamixChange >> printOn: stream [
<< '(';
<< entity class name;
<< ') ';
<< entity mooseName
<< entity displayFullString
]

{ #category : #accessing }
Expand Down
5 changes: 3 additions & 2 deletions src/Famix-Diff-Core/FamixDiffResolver.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,11 @@ FamixDiffResolver >> delAssociations: assocs [
FamixDiffResolver >> diff [
"Compute the diff between the #base MooseModel and the #target MooseModel."

[self diffEntities.
[
self diffEntities.
self diffAssociations.
self result addAll: self changesDico values asSet.
self result addAll: self associationChanges asSet.] ensure:[self removeFamixDiffCaches]
self result addAll: self associationChanges asSet ] ensure: [ self removeFamixDiffCaches ]
]

{ #category : #'run-associations' }
Expand Down

0 comments on commit 1f292b1

Please sign in to comment.