Unverified Commit 387948a2 authored by Alexandre Ardhuin's avatar Alexandre Ardhuin Committed by GitHub

remove an avoid_void_async lint (#21672)

parent 774ca2f1
......@@ -404,7 +404,7 @@ class RenderEditable extends RenderBox {
// Handles shortcut functionality including cut, copy, paste and select all
// using control + (X, C, V, A).
void _handleShortcuts(int pressedKeyCode) async {
Future<void> _handleShortcuts(int pressedKeyCode) async {
switch (pressedKeyCode) {
case _kCKeyCode:
if (!selection.isCollapsed) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment