X-Git-Url: https://gerrit.onap.org/r/gitweb?p=policy%2Fengine.git;a=blobdiff_plain;f=ONAP-REST%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Frest%2Fjpa%2FRuleAlgorithms.java;h=9d0f005be646ce9b43c4ca5d504b8422decdeee8;hp=83f6e2d3e071fa65a04ceb4e21154c2b3db69bde;hb=401b48bc573561f097960a9ca7abe6d788456f28;hpb=9301fed7c290f52208922f780fdfe4b5a880b5aa diff --git a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/RuleAlgorithms.java b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/RuleAlgorithms.java index 83f6e2d3e..9d0f005be 100644 --- a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/RuleAlgorithms.java +++ b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/RuleAlgorithms.java @@ -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() {