AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / introspection / tools / RemoveNonVisibleProperty.java
index 07fff1b..062fb96 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.introspection.tools;
 
 public class RemoveNonVisibleProperty implements IssueResolver {
 
-       @Override
-       public boolean resolveIssue(Issue issue) {
+    @Override
+    public boolean resolveIssue(Issue issue) {
 
-               if (IssueType.PROPERTY_NOT_VISIBLE.equals(issue.getType())) {
-                       //remove property value
-                       issue.getIntrospector().setValue(issue.getPropName(), null);
-                       return true;
-               }
-               return false;
-       }
+        if (IssueType.PROPERTY_NOT_VISIBLE.equals(issue.getType())) {
+            // remove property value
+            issue.getIntrospector().setValue(issue.getPropName(), null);
+            return true;
+        }
+        return false;
+    }
 
 }