commit | 6f0ec20c9514400f8097e21ad8b61cc968ad7424 | [log] [tgz] |
---|---|---|
author | Sho SHIMIZU <sshimizu@us.fujitsu.com> | Mon Feb 29 13:12:11 2016 -0800 |
committer | Thomas Vachuska <tom@onlab.us> | Tue Mar 01 07:54:30 2016 +0000 |
tree | 8335fd6f46d7b94940e225a534675f4818eda471 | |
parent | 6d10aed94b103721fd50d3359a60de60e2d3d64c [diff] |
Refactor: Split into two if statements Change-Id: If9217fea0629f2d1e06db8310722b9d008e59d98
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 8f538bc..663020c 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
@@ -329,7 +329,11 @@ continue; } - if (!(isAllowed(src, connIntent.getSrc()) && isAllowed(dst, connIntent.getDst()))) { + if (!isAllowed(src, connIntent.getSrc())) { + continue; + } + + if (!isAllowed(dst, connIntent.getDst())) { continue; }