CloneSet1305


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
17201.000finally_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
117298
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/jdbc/JDBCCategoryDataset.java
217401
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/jdbc/JDBCXYDataset.java
Next
Last
Clone Instance
1
Line Count
17
Source Line
298
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/jdbc/JDBCCategoryDataset.java

finally {
  if (resultSet != null) {
    try {
      resultSet.close();
    }
    catch (Exception
           e) {
    // report this?
    }
  }
  if (statement != null) {
    try {
      statement.close();
    }
    catch (Exception
           e) {
    // report this?
    }
  }
}


First
Previous
Clone Instance
2
Line Count
17
Source Line
401
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/jdbc/JDBCXYDataset.java

finally {
  if (resultSet != null) {
    try {
      resultSet.close();
    }
    catch (Exception
           e) {
    // TODO: is this a good idea?
    }
  }
  if (statement != null) {
    try {
      statement.close();
    }
    catch (Exception
           e) {
    // TODO: is this a good idea?
    }
  }
}


Clone AbstractionParameter Count: 0Parameter Bindings

finally {
  if (resultSet != null) {
    try {
      resultSet.close();
    }
    catch (Exception
           e) {
    // report this?
    // TODO: is this a good idea?
    }
  }
  if (statement != null) {
    try {
      statement.close();
    }
    catch (Exception
           e) {
    // report this?
    // TODO: is this a good idea?
    }
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None