Fixing sonar qube issues 19/27019/2
authorshrikantawachar <shrikant.awachar@amdocs.com>
Wed, 27 Dec 2017 10:51:50 +0000 (16:21 +0530)
committerVitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com>
Wed, 27 Dec 2017 14:00:53 +0000 (14:00 +0000)
Removed commented code from MapValidationFileResponseToValidationFileResponseDto file.

Change-Id: I03eca70fe5bc6dfed8ca7762b298e8f83f2ee628
Issue-ID: SDC-343
Signed-off-by: shrikantawachar <shrikant.awachar@amdocs.com>
openecomp-be/api/openecomp-sdc-rest-webapp/validation-rest/validation-rest-services/src/main/java/org/openecomp/sdcrests/validation/rest/mapping/MapValidationFileResponseToValidationFileResponseDto.java

index a5e5205..9f8ae80 100644 (file)
@@ -1,21 +1,17 @@
-/*-
- * ============LICENSE_START=======================================================
- * SDC
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
+/*
+ * Copyright © 2016-2017 European Support Limited
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * ============LICENSE_END=========================================================
  */
 
 package org.openecomp.sdcrests.validation.rest.mapping;
@@ -32,9 +28,6 @@ public class MapValidationFileResponseToValidationFileResponseDto
     extends MappingBase<ValidationFileResponse, ValidationFileResponseDto> {
   @Override
   public void doMapping(ValidationFileResponse source, ValidationFileResponseDto target) {
-    //target.setErrors(source.getErrors());
-    //target.setFileNames(source.getFileNames());
-    //target.setStatus(source.getStatus());
     target.setValidationData(source.getValidationData());
   }
 }