Example implementation: Add `TODO()` with a hint to remove stale sample code

pull/295/head
Jakub Chrzanowski 2 years ago committed by Jakub Chrzanowski
parent a7be177d6c
commit 06795471f0

@ -6,6 +6,7 @@
### Added
- Use JVM toolchain for configuring source/target compilation compatibility
- Make sure GitHub Actions release jobs have write permissions
- Example implementation: Add `TODO()` with a hint to remove stale sample code
### Changed
- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `1.6.21`

@ -9,5 +9,7 @@ internal class MyProjectManagerListener : ProjectManagerListener {
override fun projectOpened(project: Project) {
project.service<MyProjectService>()
TODO("Don't forget to remove all non-needed sample code files with their corresponding registration entries in `plugin.xml`.")
}
}

@ -6,5 +6,7 @@ class MyApplicationService {
init {
println(MyBundle.message("applicationService"))
TODO("Don't forget to remove all non-needed sample code files with their corresponding registration entries in `plugin.xml`.")
}
}

@ -7,5 +7,7 @@ class MyProjectService(project: Project) {
init {
println(MyBundle.message("projectService", project.name))
TODO("Don't forget to remove all non-needed sample code files with their corresponding registration entries in `plugin.xml`.")
}
}

Loading…
Cancel
Save