Axis yAxis = (Axis) this.rangeAxes.get(i); if (yAxis != null) { RectangleEdge edge = getRangeAxisEdge(i); space = yAxis.reserveSpace(g2, this, plotArea, edge, space); }
Axis axis = (Axis) this.domainAxes.get(i); if (axis != null) { RectangleEdge edge = getDomainAxisEdge(i); space = axis.reserveSpace(g2, this, plotArea, edge, space); }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
Method name: AxisSpace calculateRangeAxisSpace(Graphics2D, Rectangle2D, AxisSpace) Method name: AxisSpace calculateDomainAxisSpace(Graphics2D, Rectangle2D, AxisSpace)
Number of AST nodes: 4 Number of AST nodes: 4
1
Axis yAxis = (Axis) this.rangeAxes.get(i);
1
Axis axis = (Axis) this.domainAxes.get(i);
2
                if (yAxis != null) {
2
                if (axis != null) {
3
                    RectangleEdge edge = getRangeAxisEdge(i);
3
                    RectangleEdge edge = getDomainAxisEdge(i);
4
                    space = yAxis.reserveSpace(g2, this, plotArea, edge, space);
4
                    space = axis.reserveSpace(g2, this, plotArea, edge, space);
5
                }
5
                }
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.7
Clones locationClones are in different classes having the same super class
Number of node comparisons11
  1. {Refactorable}
    Mapping Summary
    Number of mapped statements4
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)27.0
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    11
    Axis yAxis = (Axis)this.rangeAxes.get(i);
    11
    Axis yAxis = (Axis)this.rangeAxes.get(i);
    11
    Axis axis = (Axis)this.domainAxes.get(i);
    Differences
    Expression1Expression2Difference
    yAxisaxisVARIABLE_NAME_MISMATCH
    rangeAxesdomainAxesVARIABLE_NAME_MISMATCH
    11
    Axis axis = (Axis)this.domainAxes.get(i);
    12
    if (yAxis != null)
    12
    if (yAxis != null)
    12
    if (axis != null)
    Differences
    Expression1Expression2Difference
    yAxisaxisVARIABLE_NAME_MISMATCH
    12
    if (axis != null)
    13
    RectangleEdge edge = getRangeAxisEdge(i);
    13
    RectangleEdge edge = getRangeAxisEdge(i);
    13
    RectangleEdge edge = getDomainAxisEdge(i);
    Differences
    Expression1Expression2Difference
    getRangeAxisEdgegetDomainAxisEdgeMETHOD_INVOCATION_NAME_MISMATCH
    Preondition Violations
    Expression getRangeAxisEdge(i) is a method call throwing exception(s) that should be caught by a try block that will be extracted
    Expression getDomainAxisEdge(i) is a method call throwing exception(s) that should be caught by a try block that will be extracted
    13
    RectangleEdge edge = getDomainAxisEdge(i);
    14
    space = yAxis.reserveSpace(g2, this, plotArea, edge, space);
    14
    space = yAxis.reserveSpace(g2, this, plotArea, edge, space);
    14
    space = axis.reserveSpace(g2, this, plotArea, edge, space);
    Differences
    Expression1Expression2Difference
    yAxisaxisVARIABLE_NAME_MISMATCH
    14
    space = axis.reserveSpace(g2, this, plotArea, edge, space);
    Precondition Violations (2)
    Row Violation
    1Expression getRangeAxisEdge(i) is a method call throwing exception(s) that should be caught by a try block that will be extracted
    2Expression getDomainAxisEdge(i) is a method call throwing exception(s) that should be caught by a try block that will be extracted