You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to @RequestParam#required, which is determined by Kotlin type automatically, I would propose to support Kotlin default arguments for @RequestParam#defaultValue.
For example, @RequestParam(defaultValue = "1") size: Int could be just @RequestParam size: Int = 1.
The text was updated successfully, but these errors were encountered:
Similar to
@RequestParam#required
, which is determined by Kotlin type automatically, I would propose to support Kotlin default arguments for@RequestParam#defaultValue
.For example,
@RequestParam(defaultValue = "1") size: Int
could be just@RequestParam size: Int = 1
.The text was updated successfully, but these errors were encountered: