Skip to content

Commit

Permalink
Don't add interface modifier in this PR.
Browse files Browse the repository at this point in the history
The `Characters` class is an empty interface, but adding `interface` to it is potentially breaking, so not doing it as part of this PR.
  • Loading branch information
lrhn authored Oct 22, 2024
1 parent 8dfaa9f commit 4e77887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/characters/lib/src/characters.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import "characters_impl.dart";
/// which allows iterating the independent characters in both directions,
/// but which also provides ways to select other ranges of characters
/// in different ways.
abstract interface class Characters implements Iterable<String> {
abstract class Characters implements Iterable<String> {
/// An empty [Characters] containing no characters.
static const Characters empty = StringCharacters("");

Expand Down

0 comments on commit 4e77887

Please sign in to comment.