I have the following code:
Boolean bool = null; try { if (bool) { //DoSomething } } catch (Exception e) { Syst
If you don't like extra null checks:
if (Boolean.TRUE.equals(value)) {...}