if (this.topBlock != null) { RectangleConstraint c1 = new RectangleConstraint(widthRange, heightRange); Size2D size = this.topBlock.arrange(g2, c1); w[0] = size.width; h[0] = size.height; }
if (this.rightBlock != null) { RectangleConstraint c4 = new RectangleConstraint(widthRange2, heightRange3); Size2D size = this.rightBlock.arrange(g2, c4); w[3] = size.width; h[3] = size.height; }
Clone fragments detected by clone detection tool
File path: /jfreechart-1.0.10/src/org/jfree/chart/block/BorderArrangement.java File path: /jfreechart-1.0.10/src/org/jfree/chart/block/BorderArrangement.java
Method name: Size2D arrangeRR(BlockContainer, Range, Range, Graphics2D) Method name: Size2D arrangeRR(BlockContainer, Range, Range, Graphics2D)
Number of AST nodes: 5 Number of AST nodes: 5
1
if (this.topBlock != null) {
1
if (this.rightBlock != null) {
2
            RectangleConstraint c1 = new RectangleConstraint(widthRange,
2
            RectangleConstraint c4 = new RectangleConstraint(widthRange2,
3
                    heightRange);
3
                    heightRange3);
4
            Size2D size = this.topBlock.arrange(g2, c1);
4
            Size2D size = this.rightBlock.arrange(g2, c4);
5
            w[0] = size.width;
5
            w[3] = size.width;
6
            h[0] = size.height;
6
            h[3] = size.height;
7
        }
7
        }
Summary
Number of common nesting structure subtrees1
Number of refactorable cases0
Number of non-refactorable cases1
Time elapsed for finding largest common nesting structure subtrees (ms)0.1
Clones locationClones are in the same method
Number of node comparisons25
  1. {Non-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)1.4
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    3
    if (this.topBlock != null)
    3
    if (this.topBlock != null)
    21
    if (this.rightBlock != null)
    Differences
    Expression1Expression2Difference
    topBlockrightBlockVARIABLE_NAME_MISMATCH
    21
    if (this.rightBlock != null)
    4
    RectangleConstraint c1 = new RectangleConstraint(widthRange, heightRange);
    4
    RectangleConstraint c1 = new RectangleConstraint(widthRange, heightRange);
    22
    RectangleConstraint c4 = new RectangleConstraint(widthRange2, heightRange3);
    Differences
    Expression1Expression2Difference
    c1c4VARIABLE_NAME_MISMATCH
    widthRangewidthRange2VARIABLE_NAME_MISMATCH
    heightRangeheightRange3VARIABLE_NAME_MISMATCH
    22
    RectangleConstraint c4 = new RectangleConstraint(widthRange2, heightRange3);
    5
    Size2D size = this.topBlock.arrange(g2, c1);
    5
    Size2D size = this.topBlock.arrange(g2, c1);
    23
    Size2D size = this.rightBlock.arrange(g2, c4);
    Differences
    Expression1Expression2Difference
    c1c4VARIABLE_NAME_MISMATCH
    topBlockrightBlockVARIABLE_NAME_MISMATCH
    23
    Size2D size = this.rightBlock.arrange(g2, c4);
    6
    w[0] = size.width;
    6
    w[0] = size.width;
    24
    w[3] = size.width;
    Differences
    Expression1Expression2Difference
    03LITERAL_VALUE_MISMATCH
    24
    w[3] = size.width;
    7
    h[0] = size.height;
    7
    h[0] = size.height;
    25
    h[3] = size.height;
    Differences
    Expression1Expression2Difference
    03LITERAL_VALUE_MISMATCH
    25
    h[3] = size.height;
    Precondition Violations (1)
    Row Violation
    1Clone fragment #1 returns variables h, w , while Clone fragment #2 returns variables h, w