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