Skip to content

Commit

Permalink
SDSFinance
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonbrunosds committed Aug 16, 2020
1 parent d9a6009 commit d1f0c0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/view/windows/MainForm.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ public static void updateWindow() {
private void removeAcquisitions() throws ElementNotFoundException {
final int[] selectedRows = table.getSelectedRows();
if (selectedRows.length > 0) {
if (Show.questionMessage(
"Essa ação excluirá permanentemente todas as\n" + "aquisições selecionadas. Deseja prosseguir?", "Não", "Sim")) {
if (Show.questionMessage("Essa ação excluirá permanentemente todas as\n"
+ "aquisições selecionadas. Deseja prosseguir?", "Não", "Sim")) {
IAcquisition acquisition;
for (final int row : selectedRows) {
acquisition = (IAcquisition) table.getModel().getValueAt(row, 0);
Expand Down

0 comments on commit d1f0c0e

Please sign in to comment.