See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| private void carregarFilmes() { | |
| Context context = MainActivity.this; | |
| //Se há conexão disponível | |
| if (NetworkUtil.isNetworkConnected(context)) { | |
| //Aqui fazemos a chamada ao servico responsavel por carregar os filmes de acordo com as preferencias do usuario | |
| } else { | |
| //Se não há conexão disponível, exibe a mensagem | |
| View view = getActivity().findViewById(R.id.activity_main); | |
| Snackbar snackbar = Snackbar.make(view, getString(R.string.no_internet_connection), Snackbar.LENGTH_LONG); |
NOTE (2022-07-09): Xcode finally added this functionality in Xcode 14, please see release notes here:
New Features in Xcode 14 Beta 3
When editing code, the Edit > Duplicate menu item and its corresponding keyboard shortcut now duplicate the selected text — or the line that currently contains the insertion point, if no text is selected. (8614499) (FB5618491)