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 |
| |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 1 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.1 |
Clones location | Clones are declared in the same class |
Number of node comparisons | 16 |
Number of mapped statements | 3 |
Number of unmapped statements in the first code fragment | 1 |
Number of unmapped statements in the second code fragment | 1 |
Time elapsed for statement mapping (ms) | 1.5 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | if (_sqlResultsTabPlacement != value) |
| 1 | if (_sqlResultTabLimit != value) | |||||||||||||
|
| 2 | int oldValue = _sqlResultTabLimit; | ||||||||||||||
2 | final int oldValue = _sqlResultsTabPlacement; |
| | ||||||||||||||
3 | _sqlResultsTabPlacement = value; |
| 3 | _sqlResultTabLimit = value; | |||||||||||||
4 | getPropertyChangeReporter().firePropertyChange(IPropertyNames.SQL_RESULTS_TAB_PLACEMENT, oldValue, _sqlResultsTabPlacement); |
| 4 | getPropertyChangeReporter().firePropertyChange(IPropertyNames.SQL_RESULT_TAB_LIMIT, oldValue, _sqlResultTabLimit); |
Row | Violation |
---|---|
1 | Unmatched statement int oldValue=_sqlResultTabLimit; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |
2 | Unmatched statement final int oldValue=_sqlResultsTabPlacement; cannot be moved before the extracted code, because it has control dependencies from statements that will be extracted |