Skip to content
Snippets Groups Projects
Commit aadb1b05 authored by Simon Barner's avatar Simon Barner
Browse files

- Make disposed() synchronized (as in super class)

parent b8443ae5
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ import org.fortiss.tooling.base.ui.annotation.view.generic.filter.AnnotationFilt
* @author eder, diewald, barner
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: E2E53108D4A685762999DA9FFD10C0D7
* @ConQAT.Rating YELLOW Hash: 20B02B59811C764AEE63BC45A9279241
*/
public class GenericAnnotationView extends AnnotationViewPartBase {
/** Root composite of {@link GenericAnnotationView}. */
......@@ -273,7 +273,8 @@ public class GenericAnnotationView extends AnnotationViewPartBase {
super.update(modelElement);
// ensure that selected model element is visible in annotation view
AnnotationEntry entry = IAnnotationValueService.getInstance().getAnnotationEntry(modelElement);
AnnotationEntry entry =
IAnnotationValueService.getInstance().getAnnotationEntry(modelElement);
assert (entry.getModelElement() == modelElement);
tableViewer.reveal(entry);
......@@ -560,7 +561,7 @@ public class GenericAnnotationView extends AnnotationViewPartBase {
/** {@inheritDoc} */
@Override
public void dispose() {
public synchronized void dispose() {
tableViewer.getTable().dispose();
super.dispose();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment