IDEA-300739 Remove obsolete declarations of tips for lessons

GitOrigin-RevId: 23f0dc181089c24280e88702da46228b3777750f
This commit is contained in:
Konstantin Hudyakov
2022-08-31 18:46:35 +03:00
committed by intellij-monorepo-bot
parent 26265ef6ff
commit 5ae19d4044
40 changed files with 1 additions and 76 deletions

View File

@@ -111,8 +111,6 @@ open class JavaBasicCompletionLesson : KLesson("Basic completion", LessonsBundle
private fun TaskTestContext.invokeCompletion() = invokeActionViaShortcut("CTRL SPACE")
override val suitableTips = listOf("CodeCompletion")
override val helpLinks: Map<String, String> get() = mapOf(
Pair(LessonsBundle.message("basic.completion.help.code.completion"),
LessonUtil.getHelpLink("auto-completing-code.html#basic_completion")),

View File

@@ -72,8 +72,6 @@ class JavaSmartTypeCompletionLesson : KLesson("Smart type completion", LessonsBu
}
}
override val suitableTips = listOf("SmartTypeCompletion", "SmartTypeAfterNew", "SecondSmartCompletionToar")
override val helpLinks: Map<String, String> get() = mapOf(
Pair(LessonsBundle.message("help.code.completion"),
LessonUtil.getHelpLink("auto-completing-code.html")),

View File

@@ -88,8 +88,6 @@ class JavaStatementCompletionLesson
return trimmedText == "{if(){}}"
}
override val suitableTips = listOf("CompleteStatement", "FinishBySmartEnter")
override val helpLinks: Map<String, String> get() = mapOf(
Pair(JavaLessonsBundle.message("java.statement.completion.help.link"),
LessonUtil.getHelpLink("auto-completing-code.html#statements_completion")),

View File

@@ -134,8 +134,6 @@ class JavaInheritanceHierarchyLesson
private fun TaskContext.findToolWindow() = strong(UIBundle.message("tool.window.name.find"))
private fun TaskContext.hierarchyToolWindow() = strong(UIBundle.message("tool.window.name.hierarchy"))
override val suitableTips = listOf("HierarchyBrowser")
override val helpLinks: Map<String, String> get() = mapOf(
Pair(JavaLessonsBundle.message("java.inheritance.hierarchy.help.link"),
LessonUtil.getHelpLink("viewing-structure-and-hierarchy-of-the-source-code.html")),

View File

@@ -66,8 +66,6 @@ class JavaExtractMethodCocktailSortLesson
restoreRefactoringOptionsInformer()
}
override val suitableTips = listOf("ExtractMethod")
override val helpLinks: Map<String, String> get() = mapOf(
Pair(LessonsBundle.message("extract.method.help.link"),
LessonUtil.getHelpLink("extract-method.html")),

View File

@@ -137,8 +137,6 @@ class JavaRenameLesson
return newName.toString()
}
override val suitableTips = listOf("Rename")
override val helpLinks: Map<String, String> get() = mapOf(
Pair(LessonsBundle.message("rename.help.link"),
LessonUtil.getHelpLink("rename-refactorings.html")),