CloneSet5807


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8210.992catch_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
181284
plugins/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/Main.java
281292
plugins/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/Main.java
Clone Instance
1
Line Count
8
Source Line
1284
Source File
plugins/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/Main.java

          catch (InvalidInputException e) {
                this.logger.logException(e);
                if (this.systemExitWhenFinished) {
                        this.logger.flush();
                        this.logger.close();
                        System.exit(-1);
                }
                return false;
          }


Clone Instance
2
Line Count
8
Source Line
1292
Source File
plugins/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/Main.java

          catch (RuntimeException e) { // internal compiler failure
                this.logger.logException(e);
                if (this.systemExitWhenFinished) {
                        this.logger.flush();
                        this.logger.close();
                        System.exit(-1);
                }
                return false;
          }


Clone AbstractionParameter Count: 1Parameter Bindings

catch ( [[#variable8fbd2180]] e) { // internal compiler failure
  this.logger.logException(e);
  if (this.systemExitWhenFinished) {
    this.logger.flush();
    this.logger.close();
    System.exit(-1);
  }
  return false;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#8fbd2180]]
InvalidInputException 
12[[#8fbd2180]]
RuntimeException