Skip to content

Commit

Permalink
value class -> data class (fix #23, #24)
Browse files Browse the repository at this point in the history
  • Loading branch information
takke committed Apr 2, 2023
1 parent 90ebe30 commit d890885
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions twitter4j-v2-support/src/main/kotlin/twitter4j/MediaKey.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
package twitter4j

@JvmInline
value class MediaKey(val value: String)
data class MediaKey(val value: String)
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
package twitter4j

@JvmInline
value class PaginationToken(val value: String)
data class PaginationToken(val value: String)

0 comments on commit d890885

Please sign in to comment.