for (int i = 0; i < this.rangeAxes.size(); i++) {
ValueAxis axis = (ValueAxis) this.rangeAxes.get(i);
if (axis != null) {
axis.configure();
}
}
for (int c = 0; c < this.data.getColumnCount(); c++) {
Number value = this.data.getValue(r, c);
if (value != null) {
unique.add(value);
}
}
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
|
|
File path: /jfreechart-1.0.10/src/org/jfree/data/general/WaferMapDataset.java
|
Method name: void configureRangeAxes()
|
|
Method name: Set getUniqueValues()
|
Number of AST nodes: 4
|
|
Number of AST nodes: 4
|
|
1 | for (int i = 0; i < this.rangeAxes.size(); i++) {↵ | | 1 | for (int c = 0; c < this.data.getColumnCount(); c++) {↵
|
2 | ValueAxis axis = (ValueAxis) this.rangeAxes.get(i);↵ | | 2 | ↵
|
| | | 3 | Number value = this.data.getValue(r, c);↵
|
3 | if (axis != null) {↵ | | 4 | if (value != null) {↵
|
4 | axis.configure();↵ | | 5 | unique.add(value);↵
|
5 | }↵ | | 6 | ↵
|
| | | 7 | }↵
|
6 | } | | 8 | }
|
See real code fragment |
|
See real code fragment |
Summary
Number of common nesting structure subtrees | 0 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.1 |
Clones location | Clones are in different classes |
Number of node comparisons | 1 |