Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
17 | 2 | 0 | 1.000 | finally_statement |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 17 | 298 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/jdbc/JDBCCategoryDataset.java |
2 | 17 | 401 | 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) { // report this? } } if (statement != null) { try { statement.close(); } catch (Exception e) { // report this? } } } |
| |||||
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? } } } |
| |||
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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |