Skip to content

Commit

Permalink
style: apply linters automatic fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Hyperledger Bot <hyperledger-bot@hyperledger.org>
  • Loading branch information
hyperledger-bot committed May 3, 2024
1 parent 398e918 commit 199ac1b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,25 @@
"ArrayInDataClass",
"EnumEntryName",
"RemoveRedundantQualifierName",
"UnusedImport"
"UnusedImport",
)

package org.hyperledger.identus.client.models

import com.google.gson.annotations.SerializedName

/**
*
*
* @param dateTime
* @param aud
*
* @param dateTime
* @param aud
*/


data class VcVerificationParameter (
data class VcVerificationParameter(

@SerializedName("dateTime")
var dateTime: java.time.OffsetDateTime? = null,

@SerializedName("aud")
val aud: kotlin.String? = null
val aud: kotlin.String? = null,
)

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ open class ListenToEvents(
) : Ability, HasTeardown {

private val server: ApplicationEngine
private val gson = GsonBuilder().registerTypeAdapter(OffsetDateTime::class.java, CustomGsonObjectMapperFactory.OffsetDateTimeTypeAdapter()).create()
private val gson = GsonBuilder().registerTypeAdapter(OffsetDateTime::class.java, CustomGsonObjectMapperFactory.OffsetDateTimeTypeAdapter()).create()

var connectionEvents: MutableList<ConnectionEvent> = mutableListOf()
var credentialEvents: MutableList<CredentialEvent> = mutableListOf()
Expand Down

0 comments on commit 199ac1b

Please sign in to comment.