Is it bad to have if statements without else statements?
if-statement, java
Solution
No of course not. There are several times when you only need an if statement without a corresponding else.
Problem
I was just curious to know if its a bad thing to have an if(){} construct without an else statement in java.