mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Example implementation: Add TODO()
with a hint to remove stale sample code
This commit is contained in:
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…
Reference in New Issue
Block a user