if (makeURL) { try { return file.toURL().toExternalForm(); } catch (MalformedURLException e) { throw new BuildException(ERROR_NO_URL_CONVERT + file); } }
try { return new URL(encodeURI(file.toURL().toString())); } catch (UnsupportedEncodingException ex) { throw new MalformedURLException(ex.toString()); }
Clone fragments detected by clone detection tool
File path: /apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/dotnet/WsdlToDotnet.java File path: /apache-ant-1.7.0/src/org/apache/tools/ant/launch/Locator.java
Method name: String evaluate() Method name: URL fileToURL(File)
Number of AST nodes: 3 Number of AST nodes: 2
1
if (makeURL) {
2
                try {
1
try {
3
                    return file.toURL().toExternalForm();
2
            return 
4
        
3
new URL(encodeURI(file.toURL().toString()));
5
        } catch (MalformedURLException e) {
4
        } catch (UnsupportedEncodingException ex) {
6
                    throw new BuildException(ERROR_NO_URL_CONVERT + file);
5
            throw new 
7
                }
8
    
6
MalformedURLException(ex.toString());
9
        }
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.2
Clones locationClones are in different classes
Number of node comparisons4
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements1
    Number of unmapped statements in the first code fragment1
    Number of unmapped statements in the second code fragment1
    Time elapsed for statement mapping (ms)0.6
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    5
    try
    5
    try
    1
    try
    Differences
    Expression1Expression2Difference
    java.net.MalformedURLExceptionjava.io.UnsupportedEncodingExceptionSUBCLASS_TYPE_MISMATCH
    eexVARIABLE_NAME_MISMATCH
    java.net.MalformedURLExceptionjava.io.UnsupportedEncodingExceptionSUBCLASS_TYPE_MISMATCH
    org.apache.tools.ant.BuildExceptionjava.net.MalformedURLExceptionSUBCLASS_TYPE_MISMATCH
    ERROR_NO_URL_CONVERT + fileex.toString()TYPE_COMPATIBLE_REPLACEMENT
    1
    try
                                                                                                                
    2
    return new URL(encodeURI(file.toURL().toString()));
    Preondition Violations
    Unmatched statement return new URL(encodeURI(file.toURL().toString())); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted
    Unmatched return new URL(encodeURI(file.toURL().toString()));
    2
    return new URL(encodeURI(file.toURL().toString()));
    6
    return file.toURL().toExternalForm();
    6
    return file.toURL().toExternalForm();
    Preondition Violations
    Unmatched statement return file.toURL().toExternalForm(); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted
    Unmatched return file.toURL().toExternalForm();
                                                                                    
    Precondition Violations (4)
    Row Violation
    1Unmatched statement return new URL(encodeURI(file.toURL().toString())); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted
    2Unmatched return new URL(encodeURI(file.toURL().toString()));
    3Unmatched statement return file.toURL().toExternalForm(); cannot be moved before or after the extracted code, because it throws exception(s) that should be caught by a try block that will be extracted
    4Unmatched return file.toURL().toExternalForm();