refactor: we don't need explicit types here

This commit is contained in:
Breno A.
2024-06-09 09:17:05 -03:00
Unverified
parent fcd409320d
commit b5d0afd0fe
14 changed files with 38 additions and 38 deletions
@@ -25,7 +25,7 @@ public final class SendMailCommand implements CommandHandler {
// Key = User that is constructing the mail.
private static final HashMap<Integer, MailBuilder> mailBeingConstructed =
new HashMap<Integer, MailBuilder>();
new HashMap<>();
// Yes this is awful and I hate it.
@Override