Skip to content

Commit

Permalink
✏️ 3.5.1: Typo on sol003 vnf package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vignaudo committed Jun 24, 2024
1 parent 0c07706 commit 06659f0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public OnboardedVnfPackages351Sol003Controller(final OnboardedPackageFrontContro

@Override
public ResponseEntity<String> onboardedVnfPackagesGet(final MultiValueMap<String, String> requestParams, final String nextpageOpaqueMarker) {
return onboardedVnfPackageFrontController.onboardedSearch(requestParams, x -> mapper.map(x), LinksSol003::makeLinks, VnfPkgInfo.class);
return onboardedVnfPackageFrontController.onboardedSearch(requestParams, mapper::map, LinksSol003::makeLinks, VnfPkgInfo.class);
}

@Override
Expand All @@ -61,7 +61,7 @@ public ResponseEntity<Resource> onboardedVnfPackagesVnfdIdArtifactsGet(final Str

@Override
public ResponseEntity<VnfPkgInfo> onboardedVnfPackagesVnfdIdGet(final String vnfdId) {
return onboardedVnfPackageFrontController.onboardedFindById(vnfdId, x -> mapper.map(x), LinksSol003::makeLinks);
return onboardedVnfPackageFrontController.onboardedFindById(vnfdId, mapper::map, LinksSol003::makeLinks);
}

@Override
Expand Down

0 comments on commit 06659f0

Please sign in to comment.