Skip to content

Commit

Permalink
Revert formatting change
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Costigliola committed Dec 6, 2023
1 parent 56b71f3 commit 35fa210
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/com/amazon/ionelement/impl/StructElementImpl.kt
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,9 @@ internal class StructElementImpl(
override fun copy(annotations: List<String>, metas: MetaContainer): StructElementImpl =
StructElementImpl(allFields, annotations.toPersistentList(), metas.toPersistentMap())

override fun withAnnotations(vararg additionalAnnotations: String): StructElementImpl =
_withAnnotations(*additionalAnnotations)
override fun withAnnotations(vararg additionalAnnotations: String): StructElementImpl = _withAnnotations(*additionalAnnotations)

override fun withAnnotations(additionalAnnotations: Iterable<String>): StructElementImpl =
_withAnnotations(additionalAnnotations)
override fun withAnnotations(additionalAnnotations: Iterable<String>): StructElementImpl = _withAnnotations(additionalAnnotations)

override fun withoutAnnotations(): StructElementImpl = _withoutAnnotations()
override fun withMetas(additionalMetas: MetaContainer): StructElementImpl = _withMetas(additionalMetas)
Expand Down

0 comments on commit 35fa210

Please sign in to comment.