SyntaxFix
Write A Post
Hire A Developer
Questions
There is no reason to do that. In fact, I would choose to combine declaration and initialization as in
final Boolean isMatch = email1.equals (email2);
using the final keyword so you can't change it (accidentally) afterwards anymore either.
final