Skip to content

Commit 72254fa

Browse files
committed
Keep public type aliases to moved types
1 parent 294c79d commit 72254fa

File tree

66 files changed

+45
-77
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+45
-77
lines changed

Sources/SwiftDocC/Catalog Processing/GeneratedCurationWriter.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This source file is part of the Swift.org open source project
33

4-
Copyright (c) 2024-2025 Apple Inc. and the Swift project authors
4+
Copyright (c) 2024 Apple Inc. and the Swift project authors
55
Licensed under Apache License v2.0 with Runtime Library Exception
66

77
See https://swift.org/LICENSE.txt for license information
@@ -10,7 +10,6 @@
1010

1111
public import Foundation
1212
import SymbolKit
13-
import Common
1413

1514
/// A type that writes the auto-generated curation into documentation extension files.
1615
public struct GeneratedCurationWriter {

Sources/SwiftDocC/Converter/TopicRenderReferenceEncoder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public import Foundation
1212
public import Common
1313

1414
/// A thread-safe cache for encoded render references.
15-
public typealias RenderReferenceCache = Synchronized<[String: (reference: Data, overrides: [VariantOverride])]>
15+
public typealias RenderReferenceCache = Common.Synchronized<[String: (reference: Data, overrides: [VariantOverride])]>
1616

1717
enum TopicRenderReferenceEncoder {
1818
/// Inserts an encoded list of render references to an already encoded as data render node.

Sources/SwiftDocC/Indexing/Navigator/RenderNode+NavigatorIndex.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
*/
1010

1111
import Foundation
12-
import Common
1312

1413
/// A language specific representation of a render node value for building a navigator index.
1514
protocol NavigatorIndexableRenderNodeRepresentation<Metadata> {

Sources/SwiftDocC/Infrastructure/CoverageDataEntry.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
This source file is part of the Swift.org open source project
33

4-
Copyright (c) 2021-2025 Apple Inc. and the Swift project authors
4+
Copyright (c) 2021-2024 Apple Inc. and the Swift project authors
55
Licensed under Apache License v2.0 with Runtime Library Exception
66

77
See https://swift.org/LICENSE.txt for license information
@@ -10,7 +10,6 @@
1010

1111
import Foundation
1212
import SymbolKit
13-
import Common
1413

1514
/// `CoverageDataEntry` represents coverage data for one symbol/USR.
1615
public struct CoverageDataEntry: CustomStringConvertible, Codable {

Sources/SwiftDocC/Infrastructure/Diagnostics/DiagnosticEngine.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
*/
1010

1111
import Foundation
12-
import Common
1312

1413
/// A type that collects and dispatches diagnostics during compilation.
1514
public final class DiagnosticEngine {

Sources/SwiftDocC/Infrastructure/DocumentationContext.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
public import Foundation
1212
import Markdown
1313
import SymbolKit
14-
public import Common
1514

1615
/// The documentation context manages the in-memory model for the built documentation.
1716
///

Sources/SwiftDocC/Infrastructure/External Data/OutOfProcessReferenceResolver+DeprecatedCommunication.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
public import Foundation
1212
public import SymbolKit
13-
public import Common
1413

1514
extension OutOfProcessReferenceResolver {
1615

Sources/SwiftDocC/Infrastructure/External Data/OutOfProcessReferenceResolver.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
public import Foundation
1212
private import Markdown
13-
import Common
1413

1514
/// A reference resolver that launches and interactively communicates with another process or service to resolve links.
1615
///

Sources/SwiftDocC/Infrastructure/Link Resolution/LinkResolver+NavigatorIndex.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
import Foundation
1212
import SymbolKit
13-
import Common
1413

1514
/// A rendering-friendly representation of a external node.
1615
package struct ExternalRenderNode {

Sources/SwiftDocC/Infrastructure/Link Resolution/LinkResolver.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
*/
1010

1111
import Foundation
12-
import Common
1312

1413
/// A class that resolves documentation links by orchestrating calls to other link resolver implementations.
1514
public class LinkResolver {

0 commit comments

Comments
 (0)