CloneSet837


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5210.979method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15688
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Redirector.java
25700
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Redirector.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
688
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Redirector.java

/**
 * Process error output
 *
 * @param output the error output data.
 */
protected synchronized void handleErrorOutput(String output) {
  if (errorPrintStream == null) {
    errorPrintStream = new PrintStream(errorStream);
  }
  errorPrintStream.print(output);
}


First
Previous
Clone Instance
2
Line Count
5
Source Line
700
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/Redirector.java

/**
 * Handle a flush operation on the error stream
 *
 * @param output the error information being flushed.
 */
protected synchronized void handleErrorFlush(String output) {
  if (errorPrintStream == null) {
    errorPrintStream = new PrintStream(errorStream);
  }
  errorPrintStream.print(output);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Handle a flush operation on the error stream
     *
     * @param output the error information being flushed.
     */
/**
     * Process error output
     *
     * @param output the error output data.
     */
protected synchronized void [[#variable130bc8e0]](String output) {
  if (errorPrintStream == null) {
    errorPrintStream = new PrintStream(errorStream);
  }
  errorPrintStream.print(output);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#130bc8e0]]
handleErrorOutput 
12[[#130bc8e0]]
handleErrorFlush