Skip to content

Commit db797c5

Browse files
committed
refactor
1 parent 5721597 commit db797c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

super_editor/test/super_editor/super_editor_placeholders_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void main() {
3535
]))
3636
.withInputSource(TextInputSource.ime)
3737
.useStylesheet(defaultStylesheet.copyWith(
38-
inlineWidgetBuilders: [inlineWidgetBuilder],
38+
inlineWidgetBuilders: [_inlineWidgetBuilder],
3939
))
4040
.pump();
4141

@@ -79,7 +79,7 @@ void main() {
7979
});
8080
}
8181

82-
Widget? inlineWidgetBuilder(BuildContext context, TextStyle textStyle, Object placeholder) {
82+
Widget? _inlineWidgetBuilder(BuildContext context, TextStyle textStyle, Object placeholder) {
8383
if (placeholder is! _ExamplePlaceholder) {
8484
return null;
8585
}

0 commit comments

Comments
 (0)