Simplify statements

Change-Id: Ibc7df94233348d996c9e22d2f61e9f80a7508701
diff --git a/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalCircuitIntentCompiler.java b/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalCircuitIntentCompiler.java
index 5dd4f69..11a6655 100644
--- a/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalCircuitIntentCompiler.java
+++ b/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalCircuitIntentCompiler.java
@@ -558,23 +558,10 @@
     }
 
     private boolean isMultiplexingSupported(ConnectPoint src, ConnectPoint dst) {
-        if (!isTributarySlotBehaviourSupported(src.deviceId())) {
-            return false;
-        }
-
-        if (!isTributarySlotBehaviourSupported(dst.deviceId())) {
-            return false;
-        }
-
-        if (staticPort(src) != null) {
-            return false;
-        }
-
-        if (staticPort(dst) != null) {
-            return false;
-        }
-
-        return true;
+        return isTributarySlotBehaviourSupported(src.deviceId())
+                && isTributarySlotBehaviourSupported(dst.deviceId())
+                && staticPort(src) == null
+                && staticPort(dst) == null;
     }
 
     /**