Merge "Remove redundant expression true:false"
[controller.git] / opendaylight / northbound / integrationtest / src / test / java / org / opendaylight / controller / northbound / integrationtest / NorthboundIT.java
index 1e7e93f8aa27e165d79dfcbaa82b91b841ffc80f..cabfb0ee5a1e98e27194cb244f445ca8ba3ca40d 100644 (file)
@@ -1126,7 +1126,7 @@ public class NorthboundIT {
         } else {
             JSONObject ja = json.getJSONObject("hostConfig");
             String na = ja.getString("networkAddress");
-            return (na.equalsIgnoreCase(hostIp)) ? true : false;
+            return na.equalsIgnoreCase(hostIp);
         }
     }