Skip to content

Commit

Permalink
Regenerate AttachmentFlag after #861
Browse files Browse the repository at this point in the history
  • Loading branch information
lukellmann committed Sep 3, 2023
1 parent 7ae3daf commit 027c237
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ public sealed class AttachmentFlag(

final override fun hashCode(): Int = shift.hashCode()

final override fun toString(): String = if (this is Unknown)
"AttachmentFlag.Unknown(shift=$shift)" else "AttachmentFlag.${this::class.simpleName}"
final override fun toString(): String =
if (this is Unknown) "AttachmentFlag.Unknown(shift=$shift)"
else "AttachmentFlag.${this::class.simpleName}"

/**
* An unknown [AttachmentFlag].
Expand Down

0 comments on commit 027c237

Please sign in to comment.