Skip to content

Commit

Permalink
run spotless apply.
Browse files Browse the repository at this point in the history
  • Loading branch information
wywen committed Oct 26, 2024
1 parent c68b80d commit 6d3f916
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ import org.apache.fury.serializer.collection.AbstractCollectionSerializer

/** Serializer for kotlin collections. */
@Suppress("UNCHECKED_CAST")
public abstract class AbstractKotlinCollectionSerializer<E, T : Iterable<E>>(fury: Fury, cls: Class<T>) :
AbstractCollectionSerializer<T>(fury, cls) {
public abstract class AbstractKotlinCollectionSerializer<E, T : Iterable<E>>(
fury: Fury,
cls: Class<T>
) : AbstractCollectionSerializer<T>(fury, cls) {
abstract override fun onCollectionWrite(buffer: MemoryBuffer, value: T): Collection<E>

override fun read(buffer: MemoryBuffer): T {
Expand Down

0 comments on commit 6d3f916

Please sign in to comment.