CloneSet2841


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7220.986statement_sequence_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
17551
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
27561
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
Clone Instance
1
Line Count
7
Source Line
551
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_TaskTags)) != null) {
                        if (optionValue instanceof String) {
                                String stringValue = (String) optionValue;
                                if (stringValue.length() == 0) {
                                        this.taskTags = null;
                                }
                                else   {
                                        this.taskTags = CharOperation.splitAndTrimOn(',', stringValue.toCharArray());
                                }
                        }
                }


Clone Instance
2
Line Count
7
Source Line
561
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_TaskPriorities)) != null) {
                        if (optionValue instanceof String) {
                                String stringValue = (String) optionValue;
                                if (stringValue.length() == 0) {
                                        this.taskPriorites = null;
                                }
                                else   {
                                        this.taskPriorites = CharOperation.splitAndTrimOn(',', stringValue.toCharArray());
                                }
                        }
                }


Clone AbstractionParameter Count: 2Parameter Bindings

if ((optionValue = optionsMap.get( [[#variable9be0d4a0]])) != null) {
  if (optionValue instanceof String) {
    String stringValue = (String) optionValue;
    if (stringValue.length() == 0) {
      this. [[#variable9be0d420]]= null;
    }
    else {
      this. [[#variable9be0d420]]= CharOperation.splitAndTrimOn(',', stringValue.toCharArray());
    }
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#9be0d4a0]]
OPTION_TaskPriorities 
12[[#9be0d4a0]]
OPTION_TaskTags 
21[[#9be0d420]]
taskPriorites 
22[[#9be0d420]]
taskTags