1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 367467 - Generate Getters and Setters leaks memory

This commit is contained in:
Marc-Andre Laperle 2011-12-22 23:39:07 -05:00
parent 5fb38d3912
commit 42e2c8c5f7

View file

@ -231,4 +231,11 @@ public class GenerateGettersAndSettersInputPage extends UserInputWizardPage impl
variableSelectionView.refresh();
}
}
@Override
public void dispose() {
super.dispose();
IEclipsePreferences node = InstanceScope.INSTANCE.getNode(CUIPlugin.PLUGIN_ID);
node.removePreferenceChangeListener(this);
}
}