fix lints

This commit is contained in:
greenart7c3
2023-06-21 11:23:06 -03:00
parent bb698a351e
commit 68e8abecb2
2 changed files with 3 additions and 4 deletions
@@ -24,7 +24,7 @@ class RelayInformation(
val tags: List<String>?,
val posting_policy: String?,
val payments_url: String?,
val fees: RelayInformationFees?,
val fees: RelayInformationFees?
) {
companion object {
val gson: Gson = GsonBuilder()
@@ -82,7 +82,7 @@ private class RelayInformationFeeSerializer : JsonSerializer<RelayInformationFee
class RelayInformationFees(
val admission: List<RelayInformationFee>?,
val subscription: List<RelayInformationFee>?,
val publication: List<RelayInformationFee>?,
val publication: List<RelayInformationFee>?
) {
companion object {
val gson: Gson = GsonBuilder()
@@ -247,4 +247,4 @@ private class RelayInformationSerializer : JsonSerializer<RelayInformation> {
addProperty("payments_url", src.payments_url)
}
}
}
}
@@ -328,7 +328,6 @@ fun ServerConfig(
)
.show()
}
}
})
},