]> git.mxchange.org Git - addressbook-lib.git/blobdiff - src/org/mxchange/addressbook/menu/item/console/ConsoleMenuItem.java
Better compare this way:
[addressbook-lib.git] / src / org / mxchange / addressbook / menu / item / console / ConsoleMenuItem.java
index 1090a63f6c84bb9883f6e15ebb146e186dfa2291..091787d90735715bd11b8bfbc71f25833c6cb933 100644 (file)
@@ -93,7 +93,7 @@ public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem
                this.getLogger().trace(MessageFormat.format("client={0} - CALLED!", client)); //NOI18N
 
                // Client must not be null
-               if (client == null) {
+               if (null == client) {
                        // Abort here
                        throw new NullPointerException("client is null");
                } else if (!(client instanceof AddressbookClient)) {