Commit 84dfe5a
committed
Fix FormEditor.dispose() calling super.dispose() first
Common pattern for init/dispose, setup/teardown is that on init, super
is called first and on dispose last.
This is always done this way to allow super class initialize whatever
needed first and subclass work on that, and the dispose should always
perform cleanup in the opposite direction. Otherwise super code might
cleanup things that are still needed for the subclass to properly
cleanup.
Probably related to
eclipse-pde/eclipse.pde#19631 parent 862d9d1 commit 84dfe5a
File tree
1 file changed
+1
-1
lines changed- bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/editor
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
400 | 400 | | |
401 | 401 | | |
402 | 402 | | |
403 | | - | |
404 | 403 | | |
405 | 404 | | |
406 | 405 | | |
| |||
417 | 416 | | |
418 | 417 | | |
419 | 418 | | |
| 419 | + | |
420 | 420 | | |
421 | 421 | | |
422 | 422 | | |
| |||
0 commit comments