Skip to content

Commit 4e77887

Browse files
authored
Don't add interface modifier in this PR.
The `Characters` class is an empty interface, but adding `interface` to it is potentially breaking, so not doing it as part of this PR.
1 parent 8dfaa9f commit 4e77887

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/characters/lib/src/characters.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import "characters_impl.dart";
1919
/// which allows iterating the independent characters in both directions,
2020
/// but which also provides ways to select other ranges of characters
2121
/// in different ways.
22-
abstract interface class Characters implements Iterable<String> {
22+
abstract class Characters implements Iterable<String> {
2323
/// An empty [Characters] containing no characters.
2424
static const Characters empty = StringCharacters("");
2525

0 commit comments

Comments
 (0)