Skip to content

Commit

Permalink
[Backtracing][Linux] Remove some stray "public" annotations.
Browse files Browse the repository at this point in the history
We don't need these here.  They were a leftover from previous code.

rdar://110262673
  • Loading branch information
al45tair committed Jun 6, 2023
1 parent abc3859 commit 746d626
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/public/libexec/swift-backtrace/TargetLinux.swift
Expand Up @@ -193,7 +193,7 @@ class Target {
}
}

public func redoBacktraces(limit: Int?, top: Int, cache: Bool) {
func redoBacktraces(limit: Int?, top: Int, cache: Bool) {
for (ndx, thread) in threads.enumerated() {
guard let context = thread.context else {
continue
Expand All @@ -219,7 +219,7 @@ class Target {
}
}

public func withDebugger(_ body: () -> ()) throws {
func withDebugger(_ body: () -> ()) throws {
print("""
From another shell, please run
Expand Down

0 comments on commit 746d626

Please sign in to comment.