File path: /jfreechart-1.0.10/src/org/jfree/chart/urls/CustomCategoryURLGenerator.java | File path: /jfreechart-1.0.10/src/org/jfree/chart/urls/CustomXYURLGenerator.java | |||
Method name: boolean equals(Object)
|
Method name: boolean equals(Object)
|
|||
Number of AST nodes: 7 | Number of AST nodes: 7 | |||
1 | String u1 = getURL(series, item);↵ | 1 | String u1 = getURL(series, item);↵ | |
2 | String u2 = generator.getURL(series, item);↵ | 2 | String u2 = that.getURL(series, item);↵ | |
3 | if (u1 != null) {↵ | 3 | if (u1 != null) {↵ | |
4 | if (!u1.equals(u2)) {↵ | 4 | if (!u1.equals(u2)) {↵ | |
5 | return false;↵ | 5 | return false;↵ | |
6 | }↵ | 6 | }↵ | |
7 | }↵ | 7 | }↵ | |
8 | else {↵ | 8 | else {↵ | |
9 | if (u2 != null) {↵ | 9 | if (u2 != null) {↵ | |
10 | return false;↵ | 10 | return false;↵ | |
11 | }↵ | 11 | }↵ | |
12 | } | 12 |
| |
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.4 |
Clones location | Clones are in different classes |
Number of node comparisons | 20 |
Number of mapped statements | 6 |
Number of unmapped statements in the first code fragment | 1 |
Number of unmapped statements in the second code fragment | 1 |
Time elapsed for statement mapping (ms) | 1.2 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||
---|---|---|---|---|---|---|---|---|---|---|
14 | String u1 = getURL(series, item); | 14 | String u1 = getURL(series, item); | |||||||
|
| 15 | String u2 = that.getURL(series, item); | |||||||
15 | String u2 = generator.getURL(series, item); |
| | |||||||
16 | if (u1 != null) | 16 | if (u1 != null) | |||||||
17 | if (!u1.equals(u2)) | 17 | if (!u1.equals(u2)) | |||||||
18 | return false; |
| 18 | return false; | ||||||
else | else | |||||||||
19 | if (u2 != null) | 19 | if (u2 != null) | |||||||
20 | return false; |
| 20 | return false; |
Row | Violation |
---|---|
1 | Unmatched statement String u2=that.getURL(series,item); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
2 | Unmatched statement String u2=generator.getURL(series,item); cannot be moved before or after the extracted code, because it has dependencies to/from statements that will be extracted |
3 | Conditional return false; |
4 | Conditional return false; |
5 | Conditional return false; |
6 | Conditional return false; |