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 6ddb766 commit f3b143cCopy full SHA for f3b143c
src/MicroBatchFramework/BatchEngine.cs
@@ -397,6 +397,11 @@ class CustomSorter : IComparer<MethodInfo>
397
{
398
public int Compare(MethodInfo x, MethodInfo y)
399
400
+ if (x.Name == y.Name)
401
+ {
402
+ return 0;
403
+ }
404
+
405
var xc = x.GetCustomAttribute<CommandAttribute>();
406
var yc = y.GetCustomAttribute<CommandAttribute>();
407
0 commit comments