int r = getRowIndex(rowKey); int c = getColumnIndex(columnKey); if (c != -1) { return this.underlying.getValue(r, c + this.firstCategoryIndex); } else { throw new UnknownKeyException("Unknown columnKey: " + columnKey); }
int r = getRowIndex(rowKey); int c = getColumnIndex(columnKey); if (c != -1) { return this.underlying.getValue(r, c + this.firstCategoryIndex); } else { throw new UnknownKeyException("Unknown columnKey: " + columnKey); }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/data/category/SlidingCategoryDataset.java File path: /jfreechart-1.0.10/src/org/jfree/data/gantt/SlidingGanttCategoryDataset.java
Method name: Number getValue(Comparable, Comparable) Method name: Number getValue(Comparable, Comparable)
Number of AST nodes: 5 Number of AST nodes: 5
1
int r = getRowIndex(rowKey);
1
int r = getRowIndex(rowKey);
2
		int c = getColumnIndex(columnKey);
2
		int c = getColumnIndex(columnKey);
3
		if (c != -1) {
3
		if (c != -1) {
4
            return this.underlying.getValue(r, c + this.firstCategoryIndex);
4
            return this.underlying.getValue(r, c + this.firstCategoryIndex);
5
		}
5
		}
6
		else {
6
		else {
7
			throw new UnknownKeyException("Unknown columnKey: " + columnKey);
7
			throw new UnknownKeyException("Unknown columnKey: " + columnKey);
8
		}
8
		}
Summary
Number of common nesting structure subtrees1
Number of refactorable cases1
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.1
Clones locationClones are in different classes having the same super class
Number of node comparisons13
  1. {Refactorable}
    Mapping Summary
    Number of mapped statements5
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)2.6
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    1
    int r = getRowIndex(rowKey);
    1
    int r = getRowIndex(rowKey);
    2
    int c = getColumnIndex(columnKey);
    2
    int c = getColumnIndex(columnKey);
    3
    if (c != -1)
    3
    if (c != -1)
    4
    return this.underlying.getValue(r, c + this.firstCategoryIndex);
    4
    return this.underlying.getValue(r, c + this.firstCategoryIndex);
    4
    return this.underlying.getValue(r, c + this.firstCategoryIndex);
    Differences
    Expression1Expression2Difference
    org.jfree.data.category.CategoryDatasetorg.jfree.data.gantt.GanttCategoryDatasetSUBCLASS_TYPE_MISMATCH
    4
    return this.underlying.getValue(r, c + this.firstCategoryIndex);
    else
    else
    5
    throw new UnknownKeyException("Unknown columnKey: " + columnKey);
    5
    throw new UnknownKeyException("Unknown columnKey: " + columnKey);
    Precondition Violations (0)
    Row Violation