File path: /jEdit-4.2/src/org/gjt/sp/jedit/options/AbbrevsOptionPane.java | File path: /jEdit-4.2/src/org/gjt/sp/jedit/options/AbbrevsOptionPane.java | |||
Method name: int compare(Object, Object)
|
Method name: int compare(Object, Object)
|
|||
Number of AST nodes: 3 | Number of AST nodes: 3 | |||
1 | String expand1 = a1.expand.toLowerCase();↵ | 1 | String abbrev1 = a1.abbrev.toLowerCase();↵ | |
2 | String expand2 = a2.expand.toLowerCase();↵ | 2 | String abbrev2 = a2.abbrev.toLowerCase();↵ | |
3 | return MiscUtilities.compareStrings(↵ | 3 | return MiscUtilities.compareStrings(↵ | |
4 | expand1,expand2,true); | 4 | abbrev1,abbrev2,true); | |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 1 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.0 |
Clones location | Clones are in the same method |
Number of node comparisons | 9 |
Number of mapped statements | 3 |
Number of unmapped statements in the first code fragment | 0 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 0.0 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7 | String expand1 = a1.expand.toLowerCase(); |
| 4 | String abbrev1 = a1.abbrev.toLowerCase(); | |||||||||||||
8 | String expand2 = a2.expand.toLowerCase(); |
| 5 | String abbrev2 = a2.abbrev.toLowerCase(); | |||||||||||||
9 | return MiscUtilities.compareStrings(expand1, expand2, true); |
| 6 | return MiscUtilities.compareStrings(abbrev1, abbrev2, true); |
Row | Violation |
---|---|
1 | Not all possible execution flows end in a return statement |