print debug
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-05-21 23:37:53 +02:00
parent 922d22c07d
commit 5b8f8cc108
2 changed files with 2 additions and 1 deletions

View File

@ -77,6 +77,7 @@ class InputServiceServer {
is PartData.FormItem -> {
if (part.name == "description") {
val gson = Gson()
print(part.value)
description = gson.fromJson(part.value, SampleObject::class.java)
}
}