Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2021-09-15 07:00:23 +0000
committerLars Vogel2021-09-15 07:38:24 +0000
commit3d6e291eefa26cd0a9218bd0044943e16ca07b33 (patch)
tree2568f6508b4492c59fd2ce3beceda1391cc0591e
parent3555201bb27e9b7d92dad9f838e8ec48cd4145fb (diff)
downloadeclipse.platform.text-I20210917-0000.tar.gz
eclipse.platform.text-I20210917-0000.tar.xz
eclipse.platform.text-I20210917-0000.zip
Using JDT clean-up to convert to inner class. Change-Id: I422d9cbf44d0a428cf616f3c0242406d00ffabc0 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.text/+/185448 Tested-by: Platform Bot <platform-bot@eclipse.org>
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/spelling/SpellingReconcileStrategy.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/spelling/SpellingReconcileStrategy.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/spelling/SpellingReconcileStrategy.java
index 33a30de4c7c..48064ca2c30 100644
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/spelling/SpellingReconcileStrategy.java
+++ b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/spelling/SpellingReconcileStrategy.java
@@ -52,7 +52,7 @@ public class SpellingReconcileStrategy implements IReconcilingStrategy, IReconci
/**
* Spelling problem collector.
*/
- private class SpellingProblemCollector implements ISpellingProblemCollector {
+ private static class SpellingProblemCollector implements ISpellingProblemCollector {
/** Annotation model. */
private IAnnotationModel fAnnotationModel;

Back to the top