File path: /apache-ant-1.7.0/src/org/apache/tools/ant/types/resources/FileResource.java | File path: /apache-ant-1.7.0/src/org/apache/tools/ant/types/resources/URLResource.java | |||
Method name: boolean equals(Object)
|
Method name: boolean equals(Object)
|
|||
Number of AST nodes: 8 | Number of AST nodes: 8 | |||
1 | if (this == another) {↵ | 1 | if (this == another) {↵ | |
2 | return true;↵ | 2 | return true;↵ | |
3 | }↵ | 3 | }↵ | |
4 | if (isReference()) {↵ | 4 | if (isReference()) {↵ | |
5 | return getCheckedRef().equals(another);↵ | 5 | return getCheckedRef().equals(another);↵ | |
6 | }↵ | 6 | }↵ | |
7 | if (!(another.getClass().equals(getClass()))) {↵ | 7 | if (!(another.getClass().equals(getClass()))) {↵ | |
8 | return false;↵ | 8 | return false;↵ | |
9 | }↵ | 9 | }↵ | |
10 | FileResource otherfr = (FileResource) another;↵ | 10 | URLResource otheru = (URLResource) another;↵ | |
11 | return getFile() == null↵ | 11 | return getURL() == null↵ | |
12 | ? otherfr.getFile() == null↵ | 12 | ? otheru.getURL() == null↵ | |
13 | : getFile().equals(otherfr.getFile()); | 13 | : getURL().equals(otheru.getURL()); | |
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.6 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 31 |
Number of mapped statements | 7 |
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.4 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if (this == another) | 1 | if (this == another) | ||||||||||||||||||||
2 | return true; | 2 | return true; | ||||||||||||||||||||
3 | if (isReference()) | 3 | if (isReference()) | ||||||||||||||||||||
4 | return getCheckedRef().equals(another); | 4 | return getCheckedRef().equals(another); | ||||||||||||||||||||
5 | if (!(another.getClass().equals(getClass()))) |
| 5 | if (!(another.getClass().equals(getClass()))) | |||||||||||||||||||
6 | return false; | 6 | return false; | ||||||||||||||||||||
7 | FileResource otherfr = (FileResource)another; |
| 7 | URLResource otheru = (URLResource)another; | |||||||||||||||||||
| 8 | return getURL() == null ? otheru.getURL() == null : getURL().equals(otheru.getURL()); | |||||||||||||||||||||
8 | return getFile() == null ? otherfr.getFile() == null : getFile().equals(otherfr.getFile()); | |
Row | Violation |
---|---|
1 | Type java.lang.Class<> of variable getClass() does not match with type java.lang.Class<> of variable getClass() |
2 | Clone fragment #1 returns variable otherfr with type org.apache.tools.ant.types.resources.FileResource , while Clone fragment #2 returns variable otheru with type org.apache.tools.ant.types.resources.URLResource |