Skip to content

Commit

Permalink
code clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
7hong13 committed May 29, 2024
1 parent ad0f707 commit 2c11526
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions yorkie/src/main/kotlin/dev/yorkie/document/crdt/CrdtTree.kt
Original file line number Diff line number Diff line change
Expand Up @@ -831,9 +831,7 @@ internal data class CrdtTreeNode private constructor(
attributes: Map<String, String>,
executedAt: TimeTicket,
): List<RhtSetResult> {
return attributes.map { (key, value) ->
_attributes.set(key, value, executedAt)
}
return attributes.map { (key, value) -> _attributes.set(key, value, executedAt) }
}

fun removeAttribute(key: String, executedAt: TimeTicket): List<RhtNode> {
Expand Down

0 comments on commit 2c11526

Please sign in to comment.