We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdd01e5 commit 495586bCopy full SHA for 495586b
src/Famix2Java/FAMIX2JavaVisitor.class.st
@@ -132,7 +132,7 @@ FAMIX2JavaVisitor >> printImports: aClass [
132
flatCollect: [ :method | method annotationInstances ]).
133
annotationTypes := (annotationInts
134
collect: [ :ann | ann annotationType ]) asSet.
135
- annotationTypes
+ (annotationTypes sorted: #fullName ascending)
136
do: [ :annotType|
137
self << 'import '.
138
annotType typeContainer
@@ -142,7 +142,7 @@ FAMIX2JavaVisitor >> printImports: aClass [
142
<<< annotType name;
143
<<< ';';
144
crlf ].
145
- declaredTypes
+ (declaredTypes sorted: #fullName ascending)
146
do: [ :class |
147
148
class fullNamePrintOn: currentStream.
0 commit comments