Add default case to ContextBasedRangeFormattingCallback

This commit is contained in:
Christoph Loy 2020-03-06 22:32:43 +01:00 committed by Niedermann IT-Dienstleistungen
parent 26508ac19e
commit 9b1a090f6a

View file

@ -122,8 +122,9 @@ public class ContextBasedRangeFormattingCallback implements ActionMode.Callback
return true;
}
}
default:
return false;
}
return false;
}
@Override