Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Thoms2018-03-21 11:05:09 +0000
committerDani Megert2018-03-21 15:44:27 +0000
commitd99351522be1274c8a7fcd6118aea92023f13c23 (patch)
tree85e90352807172303dba78724fddf660a250e7b4 /org.eclipse.ui.workbench.texteditor/src
parent9b0af36cdbb65d7e8dff72e7eca340eb4f81f14b (diff)
downloadeclipse.platform.text-d99351522be1274c8a7fcd6118aea92023f13c23.tar.gz
eclipse.platform.text-d99351522be1274c8a7fcd6118aea92023f13c23.tar.xz
eclipse.platform.text-d99351522be1274c8a7fcd6118aea92023f13c23.zip
Bug 532703 - Fixed typo in method nameI20180322-0225I20180321-2000
Change-Id: Iba9295da0e9395e85aeb134d1c39f6dc1e6a6a41 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
Diffstat (limited to 'org.eclipse.ui.workbench.texteditor/src')
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/AbstractTextEditor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/AbstractTextEditor.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/AbstractTextEditor.java
index 3078a2464db..ac9dd61766a 100644
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/AbstractTextEditor.java
+++ b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/AbstractTextEditor.java
@@ -4033,7 +4033,7 @@ public abstract class AbstractTextEditor extends EditorPart implements ITextEdit
}
if (fSourceViewer instanceof ISourceViewerExtension5)
- installCodeMinigProviders();
+ installCodeMiningProviders();
}
/**
@@ -4041,7 +4041,7 @@ public abstract class AbstractTextEditor extends EditorPart implements ITextEdit
*
* @since 3.11
*/
- protected void installCodeMinigProviders() {
+ protected void installCodeMiningProviders() {
ICodeMiningProvider[] providers = TextEditorPlugin.getDefault().getCodeMiningProviderRegistry()
.getProviders(this.getSourceViewer(), this);
((ISourceViewerExtension5) fSourceViewer).setCodeMiningProviders(providers);

Back to the top