Skip to content

Commit 1196b49

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

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
@@ -1340,7 +1340,7 @@ object Denotations {
13401340
* enter it.
13411341
*/
13421342
def missingHook(owner: Symbol, name: Name)(implicit ctx: Context): Symbol =
1343-
if ((owner.is(Package)) && name.isTermName)
1343+
if (owner.is(Package) && name.isTermName)
13441344
ctx.newCompletePackageSymbol(owner, name.asTermName).entered
13451345
else
13461346
NoSymbol

0 commit comments

Comments
 (0)