We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8262fe commit 1618094Copy full SHA for 1618094
commons-mongo/jvm/src/main/scala/com/avsystem/commons/mongo/typed/TypedMongoCollection.scala
@@ -345,6 +345,9 @@ class TypedMongoCollection[E <: BaseMongoEntity] private(
345
346
@bincompat private[typed] def this(rawCollection: MongoCollection[_], format: MongoAdtFormat[E]) =
347
this(rawCollection)(MongoEntityMeta.bincompatMeta(format))
348
+
349
+ @bincompat private[typed] def this(rawCollection: MongoCollection[_], meta: MongoEntityMeta[E]) =
350
+ this(rawCollection)(meta)
351
}
352
353
object TypedMongoCollection {
0 commit comments