File path: /jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java | File path: /jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java | |||
Method name: void updateBounds()
|
Method name: void updateBounds()
|
|||
Number of AST nodes: 6 | Number of AST nodes: 6 | |||
1 | double minv = min.doubleValue();↵ | 1 | double maxv = max.doubleValue();↵ | |
2 | if (!Double.isNaN(minv)) {↵ | 2 | if (!Double.isNaN(maxv)) {↵ | |
3 | if (minv < this.minimumRangeValue || Double.isNaN(↵ | 3 | if (maxv > this.maximumRangeValue || Double.isNaN(↵ | |
4 | this.minimumRangeValue)) {↵ | 4 | this.maximumRangeValue)) {↵ | |
5 | this.minimumRangeValue = minv;↵ | 5 | this.maximumRangeValue = maxv;↵ | |
6 | this.minimumRangeValueRow = r;↵ | 6 | this.maximumRangeValueRow = r;↵ | |
7 | this.minimumRangeValueColumn = c;↵ | 7 | this.maximumRangeValueColumn = c;↵ | |
8 | }↵ | 8 | }↵ | |
9 | } | 9 |
| |
See real code fragment | See real code fragment |
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.2 |
Clones location | Clones are in the same method |
Number of node comparisons | 1 |