Set wantsDiagnostics() in AbstractFilteringTrace
report() already delegates to the parentTrace, so wantsDiagnostics() should delegate to it as well.
This commit is contained in:
committed by
Dmitry Savvinov
parent
2e31f95554
commit
221d49a995
@@ -39,4 +39,6 @@ abstract class AbstractFilteringTrace(
|
|||||||
override fun report(diagnostic: Diagnostic) {
|
override fun report(diagnostic: Diagnostic) {
|
||||||
parentTrace.report(diagnostic)
|
parentTrace.report(diagnostic)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun wantsDiagnostics(): Boolean = parentTrace.wantsDiagnostics()
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user