Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
3 | 2 | 2 | 0.950 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 3 | 1843 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/Util.java |
2 | 3 | 1851 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/Util.java |
| ||||
/** * Sorts an array of objects in place. * The given comparer compares pairs of items. */ public static void sort(Object[] objects, Comparer comparer) { if (objects.length > 1) quickSort(objects, 0, objects.length - 1, comparer); } |
| ||||
/** * Sorts an array of objects in place, using the sort order given for each item. */ public static void sort(Object[] objects, int[] sortOrder) { if (objects.length > 1) quickSort(objects, 0, objects.length - 1, sortOrder); } |
| |||
/** * Sorts an array of objects in place. * The given comparer compares pairs of items. */ /** * Sorts an array of objects in place, using the sort order given for each item. */ public static void sort(Object[] objects, [[#variable72ee8840]] [[#variable72ee8760]]) { if (objects.length > 1) quickSort(objects, 0, objects.length - 1, [[#variable72ee8760]]); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#72ee8840]] | Comparer |
1 | 2 | [[#72ee8840]] | int[] |
2 | 1 | [[#72ee8760]] | comparer |
2 | 2 | [[#72ee8760]] | sortOrder |