Skip to content

Commit

Permalink
Fix #29
Browse files Browse the repository at this point in the history
Correct tag creation.
  • Loading branch information
LABSARI committed Nov 6, 2023
1 parent a093a88 commit fb672d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Famix-Tagging/MooseAbstractGroup.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ MooseAbstractGroup >> findTagCategoryNamed: aCategoryMooseName [
MooseAbstractGroup >> findTagNamed: aTagMooseName [
"we dont care about tag category"

^ self detect: [ :anEntity | anEntity mooseName = aTagMooseName ]
^ self allTags detect: [ :anEntity | anEntity mooseName = aTagMooseName ]
]

{ #category : #'*Famix-Tagging' }
Expand Down

0 comments on commit fb672d6

Please sign in to comment.