summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorToine Siebelink <toine.siebelink@est.tech>2021-07-15 13:28:30 +0000
committerGerrit Code Review <gerrit@onap.org>2021-07-15 13:28:30 +0000
commita5d8ca42affd04c0cab589a83c8c95b0712f0874 (patch)
tree1bb6f8834e33418fea279791736b47f681ef3d10 /src
parent08fe971ba3012e913b9c9f28aee688a5c581756a (diff)
parentff5f74dcdc0d889aabed8351223a71ddd55f8ccc (diff)
Merge "Review checkstyle configuration"
Diffstat (limited to 'src')
-rw-r--r--src/main/java/org/onap/cps/ncmp/rest/controller/DmiRestController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/cps/ncmp/rest/controller/DmiRestController.java b/src/main/java/org/onap/cps/ncmp/rest/controller/DmiRestController.java
index 57542102..16fb73a8 100644
--- a/src/main/java/org/onap/cps/ncmp/rest/controller/DmiRestController.java
+++ b/src/main/java/org/onap/cps/ncmp/rest/controller/DmiRestController.java
@@ -37,7 +37,7 @@ public class DmiRestController implements DmiPluginApi {
@Override
public ResponseEntity<Object> helloWorld() {
- final var helloWorld = dmiService.getHelloWorld() ;
+ final var helloWorld = dmiService.getHelloWorld();
return new ResponseEntity<>(helloWorld, HttpStatus.OK);
}