Skip to content

Commit

Permalink
Update Deletar.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ImMarcio authored Sep 6, 2023
1 parent 9abb98a commit cb89441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appsConsole/Deletar.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public Deletar() {

//Deletando todas as reuniões orfãos
for (Reuniao reuniao : reunioes) {
if(reuniao.numeroPessoasDaReuniao() == 1) {
if(reuniao.numeroPessoasDaReuniao() < 2) {
manager.delete(reuniao);

}
Expand Down

0 comments on commit cb89441

Please sign in to comment.