From 63ba96e161941215659a5d2735dd79e3da050d7b Mon Sep 17 00:00:00 2001 From: shrikantawachar Date: Wed, 27 Dec 2017 16:21:50 +0530 Subject: Fixing sonar qube issues Removed commented code from MapValidationFileResponseToValidationFileResponseDto file. Change-Id: I03eca70fe5bc6dfed8ca7762b298e8f83f2ee628 Issue-ID: SDC-343 Signed-off-by: shrikantawachar --- ...lidationFileResponseToValidationFileResponseDto.java | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) (limited to 'openecomp-be/api') diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/validation-rest/validation-rest-services/src/main/java/org/openecomp/sdcrests/validation/rest/mapping/MapValidationFileResponseToValidationFileResponseDto.java b/openecomp-be/api/openecomp-sdc-rest-webapp/validation-rest/validation-rest-services/src/main/java/org/openecomp/sdcrests/validation/rest/mapping/MapValidationFileResponseToValidationFileResponseDto.java index a5e5205ba0..9f8ae80e18 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/validation-rest/validation-rest-services/src/main/java/org/openecomp/sdcrests/validation/rest/mapping/MapValidationFileResponseToValidationFileResponseDto.java +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/validation-rest/validation-rest-services/src/main/java/org/openecomp/sdcrests/validation/rest/mapping/MapValidationFileResponseToValidationFileResponseDto.java @@ -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 { @Override public void doMapping(ValidationFileResponse source, ValidationFileResponseDto target) { - //target.setErrors(source.getErrors()); - //target.setFileNames(source.getFileNames()); - //target.setStatus(source.getStatus()); target.setValidationData(source.getValidationData()); } } -- cgit 1.2.3-korg