Is this in any way usefull if (this != null)? [closed]
- by infate
I came across some tests that included code like this:
if (this != null) {
do something
}
Is this if clause of any use?
Is there a purpose I don't get that makes this useful?