Given: ``` if (myObj != null && myObj instanceof SomeObject) { // ... } ``` I should be warned that `myObj != null` is not needed, given that instanceOf handles that under the hood.