From 5d4ad8a0c43fbeb98a5809fed37004a4afaf8d5e Mon Sep 17 00:00:00 2001 From: "Gregory.Shrago" Date: Wed, 30 Jul 2014 01:00:38 +0400 Subject: [PATCH] Python: turn comment injector back on --- .../python/intelliLang/PyLanguageInjectionSupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/IntelliLang-python/src/com/jetbrains/python/intelliLang/PyLanguageInjectionSupport.java b/python/IntelliLang-python/src/com/jetbrains/python/intelliLang/PyLanguageInjectionSupport.java index dee16d27646f..70768781ee38 100644 --- a/python/IntelliLang-python/src/com/jetbrains/python/intelliLang/PyLanguageInjectionSupport.java +++ b/python/IntelliLang-python/src/com/jetbrains/python/intelliLang/PyLanguageInjectionSupport.java @@ -58,6 +58,6 @@ public class PyLanguageInjectionSupport extends AbstractLanguageInjectionSupport @Nullable @Override public BaseInjection findCommentInjection(@NotNull PsiElement host, @Nullable Ref commentRef) { - return null; + return super.findCommentInjection(host, commentRef); } }