Skip to content

Commit df8e698

Browse files
committed
[Backtracing][Linux] Remove some stray "public" annotations.
We don't need these here. They were a leftover from previous code. rdar://110262673
1 parent 8cf570c commit df8e698

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/libexec/swift-backtrace/TargetLinux.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ class Target {
193193
}
194194
}
195195

196-
public func redoBacktraces(limit: Int?, top: Int, cache: Bool) {
196+
func redoBacktraces(limit: Int?, top: Int, cache: Bool) {
197197
for (ndx, thread) in threads.enumerated() {
198198
guard let context = thread.context else {
199199
continue
@@ -219,7 +219,7 @@ class Target {
219219
}
220220
}
221221

222-
public func withDebugger(_ body: () -> ()) throws {
222+
func withDebugger(_ body: () -> ()) throws {
223223
print("""
224224
From another shell, please run
225225

0 commit comments

Comments
 (0)