Skip to content

Commit

Permalink
Minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
waltkb committed Oct 9, 2023
1 parent 07ffd2c commit 80a6feb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,4 @@ import kotlinx.serialization.Transient
abstract class VerificationPolicy(
open val name: String,
@Transient open val description: String? = null
) {


}
)
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import kotlinx.serialization.json.JsonObject
import kotlinx.serialization.json.jsonArray
import kotlinx.serialization.json.jsonObject

class DidWebResolver() : LocalResolverMethod("web") {
class DidWebResolver : LocalResolverMethod("web") {

companion object {
var URL_PROTOCOL = "https"//TODO: fix (exposed for test purpose)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import kotlinx.serialization.json.jsonObject
import kotlinx.serialization.json.jsonPrimitive
import kotlin.test.assertNotNull

abstract class DidResolverTestBase() {
abstract class DidResolverTestBase {
protected abstract val sut: LocalResolverMethod

open fun `given a did String, when calling resolve, then the result is a valid did document`(
Expand Down

0 comments on commit 80a6feb

Please sign in to comment.