Fix Kotlin example for @Required

Since @Required can only be declared on a method, this commit moves the
@Required declaration from the field to the "set" method.

Closes gh-28590
This commit is contained in:
Sam Brannen
2022-06-09 13:13:43 +02:00
parent 8a30bc2993
commit 290cc73d3d

View File

@@ -4688,8 +4688,9 @@ example:
----
class SimpleMovieLister {
@Required
lateinit var movieFinder: MovieFinder
@Required
set
// ...
}