Skip to content

Commit 49b1b24

Browse files
committed
- adds comment for @zengin 🐱‍👤
1 parent f9ee25d commit 49b1b24

File tree

1 file changed

+1
-1
lines changed
  • typesummary/app/src/main/java/typesummary

1 file changed

+1
-1
lines changed

typesummary/app/src/main/java/typesummary/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ private static void serializeMethods(final Class<?> clazz, final ILogWriter writ
125125
.sequential()
126126
.map(x -> x.getName() + x.getType().getName())
127127
.collect(Collectors.toList())))
128-
);
128+
);// we want a deterministic sort of the methods to avoid getting false changes, using methodname paramNameparamType... as sorting value
129129
for(Method method : methods) {
130130
if(!methodsNameToSkip.contains(method.getName())) {
131131
writer.write("method " + method.getName(), 2);

0 commit comments

Comments
 (0)