CloneSet814


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6210.979catch_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1678
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/compilers/Javac12.java
2660
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/compilers/Javac13.java
Next
Last
Clone Instance
1
Line Count
6
Source Line
78
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/compilers/Javac12.java

catch (Exception
       ex) {
  if (ex instanceof BuildException) {
    throw (BuildException) ex;
  }
  else {
    throw new BuildException("Error starting classic compiler: ", ex, location);
  }
}


First
Previous
Clone Instance
2
Line Count
6
Source Line
60
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/compilers/Javac13.java

catch (Exception
       ex) {
  if (ex instanceof BuildException) {
    throw (BuildException) ex;
  }
  else {
    throw new BuildException("Error starting modern compiler", ex, location);
  }
}


Clone AbstractionParameter Count: 1Parameter Bindings

catch (Exception
       ex) {
  if (ex instanceof BuildException) {
    throw (BuildException) ex;
  }
  else {
    throw new BuildException( [[#variable130a7520]], ex, location);
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#130a7520]]
"Error starting classic compiler: " 
12[[#130a7520]]
"Error starting modern compiler"