@@ -14,7 +14,7 @@ sealed trait ReactiveMongoBsonValueEnum[ValueType <: AnyVal, EntryType <: ValueE
14
14
/**
15
15
* Implicit BSON handler for the entries of this enum
16
16
*/
17
- implicit def handler : BSONHandler [BSONValue , EntryType ]
17
+ implicit def bsonHandler : BSONHandler [BSONValue , EntryType ]
18
18
}
19
19
20
20
/**
@@ -23,7 +23,7 @@ sealed trait ReactiveMongoBsonValueEnum[ValueType <: AnyVal, EntryType <: ValueE
23
23
trait IntReactiveMongoBsonValueEnum [EntryType <: IntEnumEntry ] extends ReactiveMongoBsonValueEnum [Int , EntryType ] {
24
24
this : IntEnum [EntryType ] =>
25
25
26
- implicit val handler : BSONHandler [BSONValue , EntryType ] = EnumHandler .handler(this )
26
+ implicit val bsonHandler : BSONHandler [BSONValue , EntryType ] = EnumHandler .handler(this )
27
27
}
28
28
29
29
/**
@@ -32,7 +32,7 @@ trait IntReactiveMongoBsonValueEnum[EntryType <: IntEnumEntry] extends ReactiveM
32
32
trait LongReactiveMongoBsonValueEnum [EntryType <: LongEnumEntry ] extends ReactiveMongoBsonValueEnum [Long , EntryType ] {
33
33
this : LongEnum [EntryType ] =>
34
34
35
- implicit val handler : BSONHandler [BSONValue , EntryType ] = EnumHandler .handler(this )
35
+ implicit val bsonHandler : BSONHandler [BSONValue , EntryType ] = EnumHandler .handler(this )
36
36
}
37
37
38
38
/**
@@ -41,5 +41,5 @@ trait LongReactiveMongoBsonValueEnum[EntryType <: LongEnumEntry] extends Reactiv
41
41
trait ShortReactiveMongoBsonValueEnum [EntryType <: ShortEnumEntry ] extends ReactiveMongoBsonValueEnum [Short , EntryType ] {
42
42
this : ShortEnum [EntryType ] =>
43
43
44
- implicit val handler : BSONHandler [BSONValue , EntryType ] = EnumHandler .handler(this )
44
+ implicit val bsonHandler : BSONHandler [BSONValue , EntryType ] = EnumHandler .handler(this )
45
45
}
0 commit comments