@@ -373,7 +373,6 @@ public struct TaskGroup<ChildTaskResult> {
373
373
///
374
374
/// There are no restrictions on where you can call this method.
375
375
/// Code inside a child task or even another task can cancel a group.
376
- /// ◊TR: Is this rewrite too strong?
377
376
///
378
377
/// - SeeAlso: `Task.isCancelled`
379
378
/// - SeeAlso: `TaskGroup.isCancelled`
@@ -388,8 +387,6 @@ public struct TaskGroup<ChildTaskResult> {
388
387
/// If the task that's currently running this group is canceled,
389
388
/// the group is also implicitly canceled,
390
389
/// which is also reflected in this property's value.
391
- /// ◊TR: Why do we have two implementations of this method?
392
- /// ◊TR: What's the difference between them?
393
390
public var isCancelled : Bool {
394
391
return _taskGroupIsCancelled ( group: _group)
395
392
}
@@ -669,7 +666,6 @@ public struct ThrowingTaskGroup<ChildTaskResult, Failure: Error> {
669
666
///
670
667
/// There are no restrictions on where you can call this method.
671
668
/// Code inside a child task or even another task can cancel a group.
672
- /// ◊TR: Is this rewrite too strong?
673
669
///
674
670
/// - SeeAlso: `Task.isCancelled`
675
671
/// - SeeAlso: `ThrowingTaskGroup.isCancelled`
@@ -684,8 +680,6 @@ public struct ThrowingTaskGroup<ChildTaskResult, Failure: Error> {
684
680
/// If the task that's currently running this group is canceled,
685
681
/// the group is also implicitly canceled,
686
682
/// which is also reflected in this property's value.
687
- /// ◊TR: Why do we have two implementations of this method?
688
- /// ◊TR: What's the difference between them?
689
683
public var isCancelled : Bool {
690
684
return _taskGroupIsCancelled ( group: _group)
691
685
}
0 commit comments