File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 15
15
"UseLetInEveryBoundCaseVariable": false,
16
16
"UseSynthesizedInitializer": false,
17
17
"ReturnVoidInsteadOfEmptyTuple": true,
18
+ "NoVoidReturnOnFunctionSignature": true,
18
19
}
19
20
}
Original file line number Diff line number Diff line change @@ -482,7 +482,7 @@ package actor SourceKitD {
482
482
483
483
/// A sourcekitd notification handler in a class to allow it to be uniquely referenced.
484
484
package protocol SKDNotificationHandler : AnyObject , Sendable {
485
- func notification( _: SKDResponse ) -> Void
485
+ func notification( _: SKDResponse )
486
486
}
487
487
488
488
struct WeakSKDNotificationHandler : Sendable {
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ actor ExpectedIndexTaskTracker {
142
142
)
143
143
}
144
144
145
- func preparationTaskDidStart( taskDescription: PreparationTaskDescription ) -> Void {
145
+ func preparationTaskDidStart( taskDescription: PreparationTaskDescription ) {
146
146
guard let expectedPreparations else {
147
147
return
148
148
}
@@ -160,7 +160,7 @@ actor ExpectedIndexTaskTracker {
160
160
}
161
161
}
162
162
163
- func preparationTaskDidFinish( taskDescription: PreparationTaskDescription ) -> Void {
163
+ func preparationTaskDidFinish( taskDescription: PreparationTaskDescription ) {
164
164
guard let expectedPreparations else {
165
165
return
166
166
}
@@ -191,7 +191,7 @@ actor ExpectedIndexTaskTracker {
191
191
}
192
192
}
193
193
194
- func updateIndexStoreTaskDidStart( taskDescription: UpdateIndexStoreTaskDescription ) -> Void {
194
+ func updateIndexStoreTaskDidStart( taskDescription: UpdateIndexStoreTaskDescription ) {
195
195
if Task . isCancelled {
196
196
logger. debug (
197
197
"""
@@ -212,7 +212,7 @@ actor ExpectedIndexTaskTracker {
212
212
}
213
213
}
214
214
215
- func updateIndexStoreTaskDidFinish( taskDescription: UpdateIndexStoreTaskDescription ) -> Void {
215
+ func updateIndexStoreTaskDidFinish( taskDescription: UpdateIndexStoreTaskDescription ) {
216
216
guard let expectedIndexStoreUpdates else {
217
217
return
218
218
}
You can’t perform that action at this time.
0 commit comments