mirror of
https://github.com/KokaKiwi/BarInsta
synced 2025-12-12 06:56:31 +00:00
add default case to switch statement - issue #1101
This commit is contained in:
parent
fdacd1b421
commit
1f61926108
1 changed files with 4 additions and 0 deletions
|
|
@ -458,6 +458,10 @@ public class StoryViewerFragment extends Fragment {
|
||||||
//No button clicked
|
//No button clicked
|
||||||
dialog.dismiss();
|
dialog.dismiss();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
dialog.dismiss();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue