/** * Append <code>includes</code> to the current list of include * patterns. * * @param includes array containing the include patterns. */ public synchronized void appendIncludes(String[] includes) { checkAttributesAllowed(); if (includes != null) { for (int i = 0; i < includes.length; i++) { defaultPatterns.createInclude().setName(includes[i]); } ds = null; } }
/** * Appends <code>includes</code> to the current list of include patterns. * Patterns may be separated by a comma or a space. * * @param includes the string containing the include patterns */ public void setIncludes(String includes) { if (isReference()) { throw tooManyAttributes(); } if (includes != null && includes.length() > 0) { StringTokenizer tok = new StringTokenizer(includes, ", ", false); while (tok.hasMoreTokens()) { createInclude().setName(tok.nextToken()); } } }
Clone fragments detected by clone detection tool
File path: /apache-ant-1.7.0/src/org/apache/tools/ant/types/resources/Files.java File path: /apache-ant-1.7.0/src/org/apache/tools/ant/types/PatternSet.java
Method name: void appendIncludes(String[]) Method name: void setIncludes(String)
Number of AST nodes: 2 Number of AST nodes: 2
1
/**
1
/**
2
     * Append <code>includes</code> to the current list of include
2
     * Appends <code>includes</code> to the current list of include patterns.
3
     * patterns.
3
     * Patterns may be separated by a comma or a space.
4
     *
4
     *
5
     * @param includes array containing the include patterns.
5
     * @param includes the string containing the include patterns
6
     */
6
     */
7
    public synchronized void appendIncludes(String[] includes) {
7
    public void setIncludes(String includes) {
8
        checkAttributesAllowed();
8
        if (isReference()) {
9
        if (includes != null) {
9
            throw tooManyAttributes();
10
            for (int i = 0; i < includes.length; i++) {
10
        }
11
                defaultPatterns.createInclude().setName(includes[i]);
11
        if (includes != null && includes.length() > 0) {
12
            }
12
            StringTokenizer tok = new StringTokenizer(includes, ", ", false);
13
            ds = null;
13
            while (tok.hasMoreTokens()) {
14
        }
14
                createInclude().setName(tok.nextToken());
15
    }
15
            }
16
        }
17
    }
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements3
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)0.0
    Similarity Score0.500
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    3
    for (int i = 0; i < includes.length; i++)
    3
    for (int i = 0; i < includes.length; i++)
    5
    while (tok.hasMoreTokens())
    Differences
    Expression1Expression2Difference
    i < includes.lengthtok.hasMoreTokens()TYPE_COMPATIBLE_REPLACEMENT
    java.lang.String[]java.lang.StringVARIABLE_TYPE_MISMATCH
    java.lang.String[]java.lang.StringVARIABLE_TYPE_MISMATCH
    Preondition Violations
    Type java.lang.String[] of variable includes does not match with type java.lang.String of variable includes
    • Make classes java.lang.String[] and java.lang.String extend a common superclass
    Type java.lang.String[] of variable includes does not match with type java.lang.String of variable includes
    • Make classes java.lang.String[] and java.lang.String extend a common superclass
    5
    while (tok.hasMoreTokens())
    4
    defaultPatterns.createInclude().setName(includes[i]);
    4
    defaultPatterns.createInclude().setName(includes[i]);
    6
    createInclude().setName(tok.nextToken());
    Differences
    Expression1Expression2Difference
    includes[i]tok.nextToken()TYPE_COMPATIBLE_REPLACEMENT
    defaultPatternsMISSING_METHOD_INVOCATION_EXPRESSION
    Preondition Violations
    Expression includes[i] cannot be parameterized, because it has dependencies to/from statements that will be extracted
    6
    createInclude().setName(tok.nextToken());
    Precondition Violations (3)
    Row Violation
    1Type java.lang.String[] of variable includes does not match with type java.lang.String of variable includes
    2Type java.lang.String[] of variable includes does not match with type java.lang.String of variable includes
    3Expression includes[i] cannot be parameterized, because it has dependencies to/from statements that will be extracted