Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
szehon-ho committed Feb 28, 2024
1 parent 8d511ac commit 73959c1
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ case class TransformExpression(
true
} else {
(function, other.function) match {
case (f: ReducibleFunction[Any, Any] @unchecked,
o: ReducibleFunction[Any, Any] @unchecked) =>
case (f: ReducibleFunction[_, _], o: ReducibleFunction[_, _]) =>
val reducer = f.reducer(o, numBucketsOpt, other.numBucketsOpt)
val otherReducer = o.reducer(f, other.numBucketsOpt, numBucketsOpt)
reducer.isDefined || otherReducer.isDefined
Expand Down

0 comments on commit 73959c1

Please sign in to comment.