File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed
Sources/SourceKitLSP/Swift Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,10 @@ extension SwiftLanguageService {
21
21
groupName: String ? ,
22
22
symbolUSR symbol: String ?
23
23
) async throws -> GeneratedInterfaceDetails ? {
24
- // Generate a deterministic document name based on module name and group name
25
- // This ensures we reuse the same interface for the same module/group combination
26
- let documentName = if let groupName {
27
- " \( moduleName) - \( groupName. replacingOccurrences ( of: " / " , with: " - " ) ) "
28
- } else {
29
- moduleName
30
- }
31
-
32
24
let urlData = GeneratedInterfaceDocumentURLData (
33
25
moduleName: moduleName,
34
26
groupName: groupName,
35
- sourcekitdDocumentName: documentName ,
27
+ sourcekitdDocumentName: " \( moduleName ) - \( UUID ( ) ) " ,
36
28
primaryFile: document
37
29
)
38
30
let position : Position ? =
You can’t perform that action at this time.
0 commit comments