Skip to content

Commit f4d59ac

Browse files
committedFeb 14, 2024
Remove inlined TODO implementation for now
1 parent 7244d70 commit f4d59ac

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed
 

‎src/content/codelabs/iterables.md

-15
Original file line numberDiff line numberDiff line change
@@ -353,9 +353,6 @@ void main() {
353353
print('Tried calling singleWhere, but received an exception: $e');
354354
}
355355
}
356-
357-
// ignore: non_constant_identifier_names
358-
// Never TODO([String? message]) => throw UnimplementedError('$message');
359356
```
360357

361358
<details>
@@ -581,9 +578,6 @@ void main() {
581578
582579
print('Success. All tests passed!');
583580
}
584-
585-
// ignore: non_constant_identifier_names
586-
// Never TODO([String? message]) => throw UnimplementedError('$message');
587581
```
588582

589583
<details>
@@ -822,9 +816,6 @@ void main() {
822816
823817
print('Success. All tests passed!');
824818
}
825-
826-
// ignore: non_constant_identifier_names
827-
// Never TODO([String? message]) => throw UnimplementedError('$message');
828819
```
829820

830821
<details>
@@ -969,9 +960,6 @@ bool _listEquals<T>(List<T>? a, List<T>? b) {
969960
}
970961
return true;
971962
}
972-
973-
// ignore: non_constant_identifier_names
974-
// Never TODO([String? message]) => throw UnimplementedError('$message');
975963
```
976964

977965
<details>
@@ -1192,9 +1180,6 @@ void main() {
11921180
bool isValidEmailAddress(EmailAddress email) {
11931181
return email.address.contains('@');
11941182
}
1195-
1196-
// ignore: non_constant_identifier_names
1197-
// Never TODO([String? message]) => throw UnimplementedError('$message');
11981183
```
11991184

12001185
<details>

0 commit comments

Comments
 (0)