1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:47:29 +08:00

Remove duplicated code path in switch.

This commit is contained in:
Lucas A 2021-01-02 19:19:55 +01:00
parent 324f80d994
commit 4266c67bb6

View File

@ -62,13 +62,6 @@ namespace osu.Android
break;
case Intent.ActionSend:
{
var content = intent.ClipData?.GetItemAt(0);
if (content != null)
handleImportFromUris(content.Uri);
break;
}
case Intent.ActionSendMultiple:
{
var uris = new List<Uri>();