Skip to content

Commit ede491e

Browse files
authored
add explicit type for implicit def (#219)
1 parent 2e43fc2 commit ede491e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/src/main/scala/com/github/sbt/jni/util/CollectionOps.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ class CollectionOps[A, Repr](xs: IterableLike[A, Repr]) {
2323
}
2424

2525
object CollectionOps {
26-
implicit def toCollectionOps[A, Repr](xs: IterableLike[A, Repr]) = new CollectionOps(xs)
26+
implicit def toCollectionOps[A, Repr](xs: IterableLike[A, Repr]): CollectionOps[A, Repr] = new CollectionOps(xs)
2727
}

0 commit comments

Comments
 (0)