Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2021-02-24 09:45:34 +0000
committerLars Vogel2021-03-10 19:32:46 +0000
commit83f10dbd87536beaed84ab0e7919192a8181d56b (patch)
treebe94b65963f600ff06e9c11ee8972c198bf5f7da
parentcee65979a07f1df261572ed31930e458a4140372 (diff)
downloadeclipse.platform.team-83f10dbd87536beaed84ab0e7919192a8181d56b.tar.gz
eclipse.platform.team-83f10dbd87536beaed84ab0e7919192a8181d56b.tar.xz
eclipse.platform.team-83f10dbd87536beaed84ab0e7919192a8181d56b.zip
CompareInputChangeNotifier This avoids the pointer to the outer class and save a tiny bit of memory. Done via JDT cleanup actions Change-Id: Icd120b612d819e9c8d375cd3ccb1f2a9eb24fbf6 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/mapping/CompareInputChangeNotifier.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/mapping/CompareInputChangeNotifier.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/mapping/CompareInputChangeNotifier.java
index 5f862535d..7029c72ce 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/mapping/CompareInputChangeNotifier.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/mapping/CompareInputChangeNotifier.java
@@ -57,7 +57,7 @@ public abstract class CompareInputChangeNotifier implements
private Map<ICompareInput, CompareInputConnecton> inputs = new HashMap<>();
private InputChangeEventHandler eventHandler;
- private class CompareInputConnecton {
+ private static class CompareInputConnecton {
private int connections;
public void increment() {
connections++;

Back to the top