(Function f1, Function f2)
| 1858 | Collections.sort(fns, |
| 1859 | new Comparator<Function>() { |
| 1860 | @Override |
| 1861 | public int compare(Function f1, Function f2) { |
| 1862 | return f1.signatureString().compareTo(f2.signatureString()); |
| 1863 | } |
| 1864 | }); |
| 1865 | return fns; |
| 1866 | } |
nothing calls this directly
no test coverage detected