diff options
author | shrikantawachar <shrikant.awachar@amdocs.com> | 2017-12-27 16:21:50 +0530 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2017-12-27 14:00:53 +0000 |
commit | 63ba96e161941215659a5d2735dd79e3da050d7b (patch) | |
tree | 08be74de67deceaf8e244aecfc45c3b3e94a3ad5 /openecomp-be/api/openecomp-sdc-rest-webapp/validation-rest/validation-rest-services/src | |
parent | ba514013257a8299d38a9c88433a3c9eac9d688c (diff) |
Fixing sonar qube issues
Removed commented code from MapValidationFileResponseToValidationFileResponseDto file.
Change-Id: I03eca70fe5bc6dfed8ca7762b298e8f83f2ee628
Issue-ID: SDC-343
Signed-off-by: shrikantawachar <shrikant.awachar@amdocs.com>
Diffstat (limited to 'openecomp-be/api/openecomp-sdc-rest-webapp/validation-rest/validation-rest-services/src')
1 files changed, 5 insertions, 12 deletions
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<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()); } } |