Skip to content

Commit 0a95e89

Browse files
committed
Drop trace.force in CaptureSet
This was showing up in testCompilation runs, locally or in CI.
1 parent 8527a9b commit 0a95e89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/cc/CaptureSet.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ sealed abstract class CaptureSet extends Showable:
159159
*/
160160
def accountsFor(x: CaptureRef)(using Context): Boolean =
161161
if comparer.isInstanceOf[ExplainingTypeComparer] then // !!! DEBUG
162-
reporting.trace.force(i"$this accountsFor $x, ${x.captureSetOfInfo}?", show = true):
162+
reporting.trace(i"$this accountsFor $x, ${x.captureSetOfInfo}?", show = true):
163163
elems.exists(_.subsumes(x))
164164
|| !x.isMaxCapability && x.captureSetOfInfo.subCaptures(this, frozen = true).isOK
165165
else

0 commit comments

Comments
 (0)