(ReadContext context)
| 601 | } |
| 602 | |
| 603 | public override LinkedList<T> ReadData(ReadContext context) |
| 604 | { |
| 605 | return new LinkedList<T>(CollectionCodec.ReadCollectionData(context.TypeResolver.GetSerializer<T>(), context)); |
| 606 | } |
| 607 | } |
| 608 | |
| 609 | public sealed class QueueSerializer<T> : Serializer<Queue<T>> |
nothing calls this directly
no test coverage detected