Resolve LF license header issue
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / RuleAlgorithms.java
index 83f6e2d..ae73fd7 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-
-/*
- *                        AT&T - PROPRIETARY
- *          THIS FILE CONTAINS PROPRIETARY INFORMATION OF
- *        AT&T AND IS NOT TO BE DISCLOSED OR USED EXCEPT IN
- *             ACCORDANCE WITH APPLICABLE AGREEMENTS.
- *
- *          Copyright (c) 2014 AT&T Knowledge Ventures
- *              Unpublished and Not for Publication
- *                     All Rights Reserved
- */
 package org.onap.policy.rest.jpa;
 
 import java.io.Serializable;
@@ -98,12 +87,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() {