File path: /jfreechart-1.0.10/src/org/jfree/data/xy/MatrixSeriesCollection.java | File path: /jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java | |||
Method name: void removeSeries(MatrixSeries)
|
Method name: void removeSeries(YIntervalSeries)
|
|||
Number of AST nodes: 6 | Number of AST nodes: 6 | |||
1 | if (series == null) {↵ | 1 | if (series == null) {↵ | |
2 | throw new IllegalArgumentException("Cannot remove null series.");↵ | 2 | throw new IllegalArgumentException("Null 'series' argument.");↵ | |
3 | } ↵ | 3 | } ↵ | |
4 | // remove the series... ↵ | |||
5 | if (this.seriesList.contains(series)) {↵ | 4 | if (this.data.contains(series)) {↵ | |
6 | series.removeChangeListener(this);↵ | 5 | series.removeChangeListener(this);↵ | |
7 | this.seriesList.remove(series);↵ | 6 | this.data.remove(series);↵ | |
8 | fireDatasetChanged();↵ | 7 | fireDatasetChanged();↵ | |
9 | } | 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.6 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 22 |
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) | 4.5 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if (series == null) |
| 1 | if (series == null) | |||||||||||||
2 | throw new IllegalArgumentException("Cannot remove null series."); |
| 2 | throw new IllegalArgumentException("Null 'series' argument."); | |||||||||||||
3 | if (this.seriesList.contains(series)) |
| 3 | if (this.data.contains(series)) | |||||||||||||
4 | series.removeChangeListener(this); |
| 4 | series.removeChangeListener(this); | |||||||||||||
5 | this.seriesList.remove(series); |
| 5 | this.data.remove(series); | |||||||||||||
6 | fireDatasetChanged(); | 6 | fireDatasetChanged(); |
Row | Violation |
---|