if (_sqlResultsTabPlacement != value) { // if(value == SwingConstants.BOTTOM) // { // // Some way this property slipt into older Property files but it was never // // used earlier. We use this little (ugly) trick to keep users being confused by // // a bottom tab placing. This was introduced for 1.2 beta 7. // // TODO: Remove some time later // if(Preferences.userRoot().getBoolean("Squirrel.TabPlacementCorrectionONFirstStartOf1_2_beta7", true)) // { // value = SwingConstants.TOP; // Preferences.userRoot().putBoolean("Squirrel.TabPlacementCorrectionONFirstStartOf1_2_beta7", false); // } // } final int oldValue = _sqlResultsTabPlacement; _sqlResultsTabPlacement = value; getPropertyChangeReporter().firePropertyChange( IPropertyNames.SQL_RESULTS_TAB_PLACEMENT, oldValue, _sqlResultsTabPlacement); }
if (_sqlResultTabLimit != value) { int oldValue = _sqlResultTabLimit; _sqlResultTabLimit = value; getPropertyChangeReporter().firePropertyChange( IPropertyNames.SQL_RESULT_TAB_LIMIT, oldValue, _sqlResultTabLimit); }
Clone fragments detected by clone detection tool
File path: /sql12/app/src/net/sourceforge/squirrel_sql/client/session/properties/SessionProperties.java File path: /sql12/app/src/net/sourceforge/squirrel_sql/client/session/properties/SessionProperties.java
Method name: void setSQLResultsTabPlacement(int) Method name: void setSqlResultTabLimit(int)
Number of AST nodes: 4 Number of AST nodes: 4
1
if (_sqlResultsTabPlacement != value)
1
if (_sqlResultTabLimit != value)
2
      {
2
      {
3
//         if(value == SwingConstants.BOTTOM)
3
         
4
//         {
5
//            // Some way this property slipt into older Property files but it was never
6
//            // used earlier. We use this little (ugly) trick to keep users being confused by
7
//            // a bottom tab placing. This was introduced for 1.2 beta 7.
8
//            // TODO: Remove some time later
9
//            if(Preferences.userRoot().getBoolean("Squirrel.TabPlacementCorrectionONFirstStartOf1_2_beta7", true))
10
//            {
11
//               value = SwingConstants.TOP;
12
//               Preferences.userRoot().putBoolean("Squirrel.TabPlacementCorrectionONFirstStartOf1_2_beta7", false);
13
//            }
14
//         }
15
         final int oldValue = _sqlResultsTabPlacement;
4
int oldValue = _sqlResultTabLimit;
16
         _sqlResultsTabPlacement = value;
5
         _sqlResultTabLimit = value;
17
         getPropertyChangeReporter().firePropertyChange(
6
         getPropertyChangeReporter().firePropertyChange(
18
            IPropertyNames.SQL_RESULTS_TAB_PLACEMENT,
7
            IPropertyNames.SQL_RESULT_TAB_LIMIT,
19
            oldValue, _sqlResultsTabPlacement);
8
            oldValue, _sqlResultTabLimit);
20
      }
9
      }
Summary
Number of common nesting structure subtrees1
Number of refactorable cases1
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.1
Clones locationClones are declared in the same class
Number of node comparisons16
  1. {Refactorable}
    Mapping Summary
    Number of mapped statements3
    Number of unmapped statements in the first code fragment1
    Number of unmapped statements in the second code fragment1
    Time elapsed for statement mapping (ms)1.5
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    1
    if (_sqlResultsTabPlacement != value)
    1
    if (_sqlResultsTabPlacement != value)
    1
    if (_sqlResultTabLimit != value)
    Differences
    Expression1Expression2Difference
    _sqlResultsTabPlacement_sqlResultTabLimitVARIABLE_NAME_MISMATCH
    1
    if (_sqlResultTabLimit != value)
                                                                          
    2
    int oldValue = _sqlResultTabLimit;
    Preondition Violations
    Unmatched statement int oldValue=_sqlResultTabLimit; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted
    2
    int oldValue = _sqlResultTabLimit;
    2
    final int oldValue = _sqlResultsTabPlacement;
    2
    final int oldValue = _sqlResultsTabPlacement;
    Preondition Violations
    Unmatched statement final int oldValue=_sqlResultsTabPlacement; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted
                                                                                                
    3
    _sqlResultsTabPlacement = value;
    3
    _sqlResultsTabPlacement = value;
    3
    _sqlResultTabLimit = value;
    Differences
    Expression1Expression2Difference
    _sqlResultsTabPlacement_sqlResultTabLimitVARIABLE_NAME_MISMATCH
    3
    _sqlResultTabLimit = value;
    4
    getPropertyChangeReporter().firePropertyChange(IPropertyNames.SQL_RESULTS_TAB_PLACEMENT, oldValue, _sqlResultsTabPlacement);
    4
    getPropertyChangeReporter().firePropertyChange(IPropertyNames.SQL_RESULTS_TAB_PLACEMENT, oldValue, _sqlResultsTabPlacement);
    4
    getPropertyChangeReporter().firePropertyChange(IPropertyNames.SQL_RESULT_TAB_LIMIT, oldValue, _sqlResultTabLimit);
    Differences
    Expression1Expression2Difference
    SQL_RESULTS_TAB_PLACEMENTSQL_RESULT_TAB_LIMITVARIABLE_NAME_MISMATCH
    _sqlResultsTabPlacement_sqlResultTabLimitVARIABLE_NAME_MISMATCH
    4
    getPropertyChangeReporter().firePropertyChange(IPropertyNames.SQL_RESULT_TAB_LIMIT, oldValue, _sqlResultTabLimit);
    Precondition Violations (2)
    Row Violation
    1Unmatched statement int oldValue=_sqlResultTabLimit; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted
    2Unmatched statement final int oldValue=_sqlResultsTabPlacement; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted