Skip to content

Commit 8ae7c2b

Browse files
committed
add override markers
1 parent 60ce114 commit 8ae7c2b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/scala/tools/jackson/module/scala/ser/IterableSerializerModule.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ private class ResolvedIterableSerializer( src: IterableSerializer,
6060
unwrapSingle, property, suppressableValue, suppressNulls)
6161
with IterableSerializer
6262
{
63-
val collectionSerializer =
63+
override val collectionSerializer =
6464
new ScalaIterableSerializer(src.collectionSerializer, property, vts, elementSerializer,
6565
unwrapSingle, suppressableValue, suppressNulls)
6666

@@ -78,7 +78,7 @@ private class UnresolvedIterableSerializer( cls: Class[_],
7878
extends AsArraySerializerBase[collection.Iterable[Any]](cls, et, staticTyping, vts, elementSerializer)
7979
with IterableSerializer
8080
{
81-
val collectionSerializer =
81+
override val collectionSerializer =
8282
new ScalaIterableSerializer(et, staticTyping, vts, elementSerializer)
8383

8484
override def _withValueTypeSerializer(newVts: TypeSerializer): StdContainerSerializer[_] =

src/main/scala/tools/jackson/module/scala/ser/IteratorSerializerModule.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ private class UnresolvedIteratorSerializer( cls: Class[_],
7373
extends AsArraySerializerBase[collection.Iterator[Any]](cls, et, staticTyping, vts, elementSerializer)
7474
with IteratorSerializer {
7575

76-
val iteratorSerializer =
76+
override val iteratorSerializer =
7777
new ScalaIteratorSerializer(et, staticTyping, vts)
7878

7979
override def _withValueTypeSerializer(newVts: TypeSerializer) =

0 commit comments

Comments
 (0)