Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
5 | 2 | 1 | 0.962 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 5 | 692 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Java.java |
2 | 5 | 707 | E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Java.java |
| |||||
/** * Handle output sent to System.err. * * @param output string of stderr. * * @since Ant 1.5 */ protected void handleErrorOutput(String output) { if (redirector.getErrorStream() != null) { redirector.handleErrorOutput(output); } else { super.handleErrorOutput(output); } } |
| |||||
/** * Handle output sent to System.err and flush the stream. * * @param output string of stderr. * * @since Ant 1.5.2 */ protected void handleErrorFlush(String output) { if (redirector.getErrorStream() != null) { redirector.handleErrorFlush(output); } else { super.handleErrorOutput(output); } } |
| |||
/** * Handle output sent to System.err and flush the stream. * * @param output string of stderr. * * @since Ant 1.5.2 */ /** * Handle output sent to System.err. * * @param output string of stderr. * * @since Ant 1.5 */ protected void [[#variable1307ae60]](String output) { if (redirector.getErrorStream() != null) { redirector. [[#variable1307ae60]](output); } else { super.handleErrorOutput(output); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1307ae60]] | handleErrorOutput |
1 | 2 | [[#1307ae60]] | handleErrorFlush |