We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e55f43 + 0ec038c commit 92933a1Copy full SHA for 92933a1
stdlib/public/Concurrency/Task.swift
@@ -336,21 +336,6 @@ extension Task {
336
}
337
338
339
- /// Whether this (or its parents) have task local values.
340
- var hasLocalValues: Bool {
341
- get {
342
- (bits & (1 << 27)) != 0
343
- }
344
-
345
- set {
346
- if newValue {
347
- bits = bits | 1 << 27
348
- } else {
349
- bits = (bits & ~(1 << 27))
350
351
352
353
354
355
356
0 commit comments