Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2021-07-21 13:36:20 +0000
committerAlexander Kurtakov2021-07-21 13:55:25 +0000
commit5143924c24f9fe9c69fdf72fa1a0ac14c895ddf0 (patch)
tree3546f76be1a6ba0876d7f5a61ad8ad1238bec264 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/ILaunchLabelChangedListener.java
parent5d074b295f483924811b6e11a39600f0b76b0034 (diff)
downloadeclipse.platform.debug-5143924c24f9fe9c69fdf72fa1a0ac14c895ddf0.tar.gz
eclipse.platform.debug-5143924c24f9fe9c69fdf72fa1a0ac14c895ddf0.tar.xz
eclipse.platform.debug-5143924c24f9fe9c69fdf72fa1a0ac14c895ddf0.zip
This ticket uses and tests the "Use static inner class" cleanup feature: - It reviews the feature - It reduces the memory consumption as it avoids the pointer to the outer class Example: Before: public class Outer { public class InnerClass { int i; public boolean anotherMethod() { return true; } } } After: public class Outer { public static class InnerClass { int i; public boolean anotherMethod() { return true; } } } Change-Id: Id13e31a83bc9a0740a17b1d409aebc613bcbdb7f Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.debug/+/180223 Tested-by: Platform Bot <platform-bot@eclipse.org> Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/ILaunchLabelChangedListener.java')
0 files changed, 0 insertions, 0 deletions

Back to the top