Skip to content

Commit

Permalink
reject anonymous class
Browse files Browse the repository at this point in the history
  • Loading branch information
badetitou committed Jan 6, 2021
1 parent a8f53c9 commit a01b62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Famix2Java/FAMIX2JavaVisitor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ FAMIX2JavaVisitor >> extractDeclaredTypesFor: aClass [
do: [ :parameterizedType |
declaredTypes addAll: parameterizedType arguments.
declaredTypes add: parameterizedType parameterizableClass ].
declaredTypes := declaredTypes reject: [ :dType | dType class = FAMIXParameterizedType ].
declaredTypes := declaredTypes reject: [ :dType | dType class = FAMIXParameterizedType or: [ dType isAnonymousClass ] ].
^ declaredTypes
]

Expand Down

0 comments on commit a01b62d

Please sign in to comment.