Fixed the Sonar technical debt.
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / RuleAlgorithms.java
index 83f6e2d..9d0f005 100644 (file)
@@ -98,12 +98,12 @@ public class RuleAlgorithms implements Serializable {
        
        @Transient
        public boolean isStandard() {
-               return (this.isStandard == RuleAlgorithms.STANDARD);
+               return this.isStandard == RuleAlgorithms.STANDARD;
        }
        
        @Transient
        public boolean isCustom() {
-               return (this.isStandard == RuleAlgorithms.CUSTOM);
+               return this.isStandard == RuleAlgorithms.CUSTOM;
        }
 
        public String getXacmlId() {