Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 099ac58

Browse files
authored
Remove unnecessary parameter
1 parent 89f5e83 commit 099ac58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SwiftDoc/Interface.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public final class Interface {
164164

165165
public func symbols(named name: String, resolvingTypealiases: Bool) -> [Symbol] {
166166
var pathComponents: [String] = []
167-
for component in name.split(separator: ".", omittingEmptySubsequences: true) {
167+
for component in name.split(separator: ".") {
168168
pathComponents.append("\(component)")
169169
guard resolvingTypealiases else { continue }
170170

0 commit comments

Comments
 (0)