We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75888e2 commit 887a3e8Copy full SHA for 887a3e8
pants.toml
@@ -2,7 +2,7 @@
2
# Licensed under the Apache License, Version 2.0 (see LICENSE).
3
4
[GLOBAL]
5
-pants_version = "2.23.0"
+pants_version = "2.24.0"
6
backend_packages = [
7
# This repository demonstrates using Pants with Kotlin.
8
#
src/jvm/org/pantsbuild/example/json/JsonExample.kt
@@ -23,7 +23,10 @@ fun decodeUser(file: String) {
23
println("Email: ${user.email}")
24
}
25
26
-fun encodeUser(name: String, email: String) {
+fun encodeUser(
27
+ name: String,
28
+ email: String,
29
+) {
30
val user = User(name, email)
31
println(Json.encodeToString(user))
32
0 commit comments