Skip to content

Commit cc65095

Browse files
committed
removing extra parameters not in functions to fix soundness checks
1 parent 8d90b4d commit cc65095

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Package.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ let package = Package(
99
.library(name: "InMemoryTracing", targets: ["InMemoryTracing"]),
1010
],
1111
dependencies: [
12-
.package(url: "https://github.com/apple/swift-service-context.git", from: "1.1.0")
12+
.package(url: "https://github.com/apple/swift-service-context.git", from: "1.1.0"),
13+
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"),
1314
],
1415
targets: [
1516
// ==== --------------------------------------------------------------------------------------------------------

Sources/Tracing/Tracer.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,6 @@ public func withSpan<T, Instant: TracerInstant>(
358358
/// - instant: The time instant at which the span started.
359359
/// - context: The `ServiceContext` providing information on where to start the new ``Span``.
360360
/// - kind: The ``SpanKind`` of the new ``Span``.
361-
/// - isolation: Defaulted parameter for inheriting isolation of calling actor.
362361
/// - function: The function name in which the span was started.
363362
/// - fileID: The `fileID` where the span was started.
364363
/// - line: The file line where the span was started.

Sources/Tracing/TracerProtocol+Legacy.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,6 @@ extension LegacyTracer {
350350
/// - instant: the time instant at which the span started.
351351
/// - context: The `ServiceContext` providing information on where to start the new ``Span``.
352352
/// - kind: The ``SpanKind`` of the new ``Span``.
353-
/// - isolation: Defaulted parameter for inheriting isolation of calling actor.
354353
/// - function: The function name in which the span started.
355354
/// - fileID: The `fileID` where the span started.
356355
/// - line: The file line where the span started.

0 commit comments

Comments
 (0)