Skip to content

Commit

Permalink
- Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tgiphil committed Feb 11, 2019
1 parent 2b3c0a4 commit 533277c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected List<MethodData> GetAndSortMethodData()
}
}

methods.Sort((MethodData x, MethodData y) => (int)(x.ElapsedTicks - y.ElapsedTicks));
methods.Sort((MethodData x, MethodData y) => (int)(y.ElapsedTicks - x.ElapsedTicks));

return methods;
}
Expand Down

0 comments on commit 533277c

Please sign in to comment.