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 tags: List<String>?,
val posting_policy: String?, val posting_policy: String?,
val payments_url: String?, val payments_url: String?,
val fees: RelayInformationFees?, val fees: RelayInformationFees?
) { ) {
companion object { companion object {
val gson: Gson = GsonBuilder() val gson: Gson = GsonBuilder()
@@ -82,7 +82,7 @@ private class RelayInformationFeeSerializer : JsonSerializer<RelayInformationFee
class RelayInformationFees( class RelayInformationFees(
val admission: List<RelayInformationFee>?, val admission: List<RelayInformationFee>?,
val subscription: List<RelayInformationFee>?, val subscription: List<RelayInformationFee>?,
val publication: List<RelayInformationFee>?, val publication: List<RelayInformationFee>?
) { ) {
companion object { companion object {
val gson: Gson = GsonBuilder() val gson: Gson = GsonBuilder()
@@ -328,7 +328,6 @@ fun ServerConfig(
) )
.show() .show()
} }
} }
}) })
}, },