Skip to content

Commit 2f9008f

Browse files
Update compiler/src/dotty/tools/dotc/core/Denotations.scala
1 parent 19d35ff commit 2f9008f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/core/Denotations.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ object Denotations {
311311
def requiredMethod(pname: PreName, argTypes: List[Type])(implicit ctx: Context): TermSymbol = {
312312
val name = pname.toTermName
313313
info.member(name).requiredSymbol(i"method", name, this, argTypes) { x =>
314-
(x.is(Method)) && {
314+
x.is(Method) && {
315315
x.info.paramInfoss match {
316316
case paramInfos :: Nil => paramInfos.corresponds(argTypes)(_ =:= _)
317317
case _ => false

0 commit comments

Comments
 (0)