diff --git a/src/main/kotlin/dev/usbharu/hideout/domain/model/ActivityPubStringResponse.kt b/src/main/kotlin/dev/usbharu/hideout/domain/model/ActivityPubStringResponse.kt index 26b04f51..b0a546d9 100644 --- a/src/main/kotlin/dev/usbharu/hideout/domain/model/ActivityPubStringResponse.kt +++ b/src/main/kotlin/dev/usbharu/hideout/domain/model/ActivityPubStringResponse.kt @@ -9,7 +9,6 @@ sealed class ActivityPubResponse( val contentType: ContentType = ContentType.Application.Activity ) { - override fun equals(other: Any?): Boolean { if (this === other) return true if (other !is ActivityPubResponse) return false @@ -37,7 +36,6 @@ class ActivityPubStringResponse( contentType: ContentType = ContentType.Application.Activity ) : ActivityPubResponse(httpStatusCode, contentType) { - override fun equals(other: Any?): Boolean { if (this === other) return true if (other !is ActivityPubStringResponse) return false @@ -54,8 +52,6 @@ class ActivityPubStringResponse( override fun toString(): String { return "ActivityPubStringResponse(message='$message') ${super.toString()}" } - - } class ActivityPubObjectResponse( @@ -79,6 +75,4 @@ class ActivityPubObjectResponse( override fun toString(): String { return "ActivityPubObjectResponse(message=$message) ${super.toString()}" } - - } diff --git a/src/main/kotlin/dev/usbharu/hideout/service/ap/APRequestServiceImpl.kt b/src/main/kotlin/dev/usbharu/hideout/service/ap/APRequestServiceImpl.kt index f264d4cc..c4f78ec7 100644 --- a/src/main/kotlin/dev/usbharu/hideout/service/ap/APRequestServiceImpl.kt +++ b/src/main/kotlin/dev/usbharu/hideout/service/ap/APRequestServiceImpl.kt @@ -108,8 +108,6 @@ class APRequestServiceImpl( null } - - logger.trace( """ |