Skip to content

Commit 01ccd41

Browse files
Update compiler/src/dotty/tools/dotc/core/SymDenotations.scala
1 parent 1196b49 commit 01ccd41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1481,7 +1481,7 @@ object SymDenotations {
14811481
*/
14821482
private def typeParamsFromDecls(implicit ctx: Context) =
14831483
unforcedDecls.filter(sym =>
1484-
(sym.is(TypeParam)) && sym.owner == symbol).asInstanceOf[List[TypeSymbol]]
1484+
sym.is(TypeParam) && sym.owner == symbol).asInstanceOf[List[TypeSymbol]]
14851485

14861486
/** The type parameters of this class */
14871487
override final def typeParams(implicit ctx: Context): List[TypeSymbol] = {

0 commit comments

Comments
 (0)