Fixed the Sonar technical debt.
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / Category.java
index 1d0f0e4..275b03e 100644 (file)
@@ -170,12 +170,12 @@ public class Category implements Serializable {
 
        @Transient
        public boolean isStandard() {
-               return (this.isStandard == Category.STANDARD);
+               return this.isStandard == Category.STANDARD;
        }
        
        @Transient
        public boolean isCustom() {
-               return (this.isStandard == Category.CUSTOM);
+               return this.isStandard == Category.CUSTOM;
        }
        
        @Transient