File path: /jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java | File path: /jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java | |||
Method name: void removeSeries(int)
|
Method name: void removeSeries(int)
|
|||
Number of AST nodes: 6 | Number of AST nodes: 6 | |||
1 | if ((series < 0) || (series >= getSeriesCount())) {↵ | 1 | if ((series < 0) || (series >= getSeriesCount())) {↵ | |
2 | throw new IllegalArgumentException("Series index out of bounds.");↵ | 2 | throw new IllegalArgumentException("Series index out of bounds.");↵ | |
3 | }↵ | 3 | }↵ | |
4 | XYInterval↵ | 4 | // fetch the series, remove the change listener, then remove the series.↵ | |
5 | Series ts = (XYIntervalSeries) this.data.get(series);↵ | 5 | XYSeries ts = (XYSeries) this.data.get(series);↵ | |
6 | ts.removeChangeListener(this);↵ | 6 | ts.removeChangeListener(this);↵ | |
7 | this.data.remove(series);↵ | 7 | this.data.remove(series);↵ | |
8 | fireDatasetChanged(); | 8 |
| |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 1 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.2 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 12 |
Number of mapped statements | 6 |
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) | 7.3 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if ((series < 0) || (series >= getSeriesCount())) | 1 | if ((series < 0) || (series >= getSeriesCount())) | |||||||||||||||||||
2 | throw new IllegalArgumentException("Series index out of bounds."); | 2 | throw new IllegalArgumentException("Series index out of bounds."); | |||||||||||||||||||
3 | XYIntervalSeries ts = (XYIntervalSeries)this.data.get(series); |
| 3 | XYSeries ts = (XYSeries)this.data.get(series); | ||||||||||||||||||
4 | ts.removeChangeListener(this); |
| 4 | ts.removeChangeListener(this); | ||||||||||||||||||
5 | this.data.remove(series); | 5 | this.data.remove(series); | |||||||||||||||||||
6 | fireDatasetChanged(); | 6 | fireDatasetChanged(); |
Row | Violation |
---|---|
1 | Expression (XYIntervalSeries)this.data.get(series) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression (XYSeries)this.data.get(series) cannot be parameterized, because it has dependencies to/from statements that will be extracted |