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%2FPolicyAlgorithms.java;h=c21b832b601454a68d0a69dd58b2db96b17e72e9;hp=4488fcd30f3079339f9140ea4e598ad0d679f658;hb=401b48bc573561f097960a9ca7abe6d788456f28;hpb=9301fed7c290f52208922f780fdfe4b5a880b5aa diff --git a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PolicyAlgorithms.java b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PolicyAlgorithms.java index 4488fcd30..c21b832b6 100644 --- a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PolicyAlgorithms.java +++ b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/PolicyAlgorithms.java @@ -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() {