try
{
markerHelper.createMarkers(diagnostic);
}
catch (CoreException exception)
{
EcoreEditorPlugin.INSTANCE.log(exception);
}
try
{
markerUtil.createMarkers(diagnostic);
}
catch (CoreException exception)
{
openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"), exception);
}
Clone fragments detected by clone detection tool
File path: /emf-2.4.1/src/org/eclipse/emf/ecore/presentation/EcoreEditor.java
|
|
File path: /emf-2.4.1/src/org/eclipse/emf/common/ui/editor/ProblemEditorPart.java
|
Method name: void updateProblemIndication()
|
|
Method name: void createMarkers()
|
Number of AST nodes: 2
|
|
Number of AST nodes: 2
|
|
1 | try↵ | | 1 | try↵
|
2 | {↵ | | 2 | ↵
|
3 | ↵ | | 3 | {↵
|
4 | markerHelper.createMarkers(diagnostic);↵ | | 4 | markerUtil.createMarkers(diagnostic);↵
|
5 | }↵ | | 5 | }↵
|
6 | catch (CoreException exception)↵ | | 6 | catch (CoreException exception)↵
|
7 | {↵ | | 7 | {↵
|
8 | EcoreEditorPlugin.INSTANCE.log(exception);↵ | | 8 | openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"), exception);↵
|
9 | } | | 9 | }
|
See real code fragment |
|
See real code fragment |
Summary
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 1 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.4 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 5 |
-
{Non-refactorable}
Mapping Summary
Number of mapped statements | 2 |
Number of unmapped statements in the first code fragment | 0 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 3.0 |
Clone type | Type 2 |
Mapped Statements
ID |
Statement |
|
ID |
Statement |
23 | try | | 4 | try |
24 | markerHelper.createMarkers(diagnostic); | | 5 | markerUtil.createMarkers(diagnostic); |
Precondition Violations (5)
Row |
Violation |
1 | Expression EcoreEditorPlugin.INSTANCE.log(exception) is a void method call, and thus it cannot be parameterized |
2 | Expression openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"),exception) is a void method call, and thus it cannot be parameterized |
3 | Expression EcoreEditorPlugin.INSTANCE.log(exception) is a void method call, and thus it cannot be parameterized |
4 | Expression openErrorDialog(CommonUIPlugin.getPlugin().getString("_UI_CreateMarkerError_message"),exception) is a void method call, and thus it cannot be parameterized |
5 | Type org.eclipse.emf.common.util.BasicDiagnostic of variable diagnostic does not match with type org.eclipse.emf.common.util.Diagnostic of variable diagnostic |