Skip to content

Commit 5078595

Browse files
committed
Remove Noisy Remark
This remark is basically tripped by every swiftmodule in the SDK for most projects. As it doesn't appear in tests anywhere and it provides very little signal, best to strike it for now. If we discover it has some diagnostic utility we can always revert this and add some tests.
1 parent 5752f44 commit 5078595

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/SwiftDriver/IncrementalCompilation/ModuleDependencyGraph.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,6 @@ extension ModuleDependencyGraph {
433433
precondition(self.phase != .buildingFromSwiftDeps)
434434

435435
guard let whyIntegrate = whyIncrementallyFindNodesInvalidated(by: integrand) else {
436-
info.reporter?.report("Ignoring unchanged existing external incremental dependency", integrand)
437436
return DirectlyInvalidatedNodeSet()
438437
}
439438
mutationSafetyPrecondition()
@@ -487,7 +486,8 @@ extension ModuleDependencyGraph {
487486
///
488487
/// - Parameter fed: The external dependency, with fingerprint and origin info to be integrated
489488
/// - Returns: nil if no integration is needed, or else why the integration is happening
490-
private func whyIncrementallyFindNodesInvalidated(by integrand: ExternalIntegrand
489+
private func whyIncrementallyFindNodesInvalidated(
490+
by integrand: ExternalIntegrand
491491
) -> ExternalDependency.InvalidationReason? {
492492
accessSafetyPrecondition()
493493
switch integrand {

0 commit comments

Comments
 (0)