From df8e698308ad87f4883246ee7b72d080017686ee Mon Sep 17 00:00:00 2001 From: Alastair Houghton Date: Tue, 6 Jun 2023 17:43:19 +0100 Subject: [PATCH] [Backtracing][Linux] Remove some stray "public" annotations. We don't need these here. They were a leftover from previous code. rdar://110262673 --- stdlib/public/libexec/swift-backtrace/TargetLinux.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/public/libexec/swift-backtrace/TargetLinux.swift b/stdlib/public/libexec/swift-backtrace/TargetLinux.swift index c66435a864e22..f6dda1b37d895 100644 --- a/stdlib/public/libexec/swift-backtrace/TargetLinux.swift +++ b/stdlib/public/libexec/swift-backtrace/TargetLinux.swift @@ -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 @@ -219,7 +219,7 @@ class Target { } } - public func withDebugger(_ body: () -> ()) throws { + func withDebugger(_ body: () -> ()) throws { print(""" From another shell, please run