Non-functional changes to silence Sonar
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / model / RanDetailsTransport.java
index 3162056..1053cfc 100644 (file)
@@ -83,13 +83,15 @@ public class RanDetailsTransport {
                if (nodebIdentity == null) {
                        if (other.nodebIdentity != null)
                                return false;
-               } else if (!nodebIdentity.equals(other.nodebIdentity))
+               } else if (!nodebIdentity.equals(other.nodebIdentity)) {
                        return false;
+               }
                if (nodebStatus == null) {
                        if (other.nodebStatus != null)
                                return false;
-               } else if (!nodebStatus.equals(other.nodebStatus))
+               } else if (!nodebStatus.equals(other.nodebStatus)) {
                        return false;
+               }
                return true;
        }