Skip to content

Commit 0933bbd

Browse files
author
Martijn Hoekstra
committed
rm unneeded parens
1 parent d69c279 commit 0933bbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compat/src/main/scala-2.11_2.12/scala/collection/compat/CompatImpl.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private final class IdentityPreservingBuilder[A, CC[X] <: TraversableOnce[X]](th
3434

3535
override def ++=(elems: TraversableOnce[A]): this.type =
3636
elems match {
37-
case ct(ca) if (collection == null && !ruined) => {
37+
case ct(ca) if collection == null && !ruined => {
3838
collection = ca
3939
this
4040
}

0 commit comments

Comments
 (0)