diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2021-07-15 13:28:30 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-07-15 13:28:30 +0000 |
commit | a5d8ca42affd04c0cab589a83c8c95b0712f0874 (patch) | |
tree | 1bb6f8834e33418fea279791736b47f681ef3d10 /src | |
parent | 08fe971ba3012e913b9c9f28aee688a5c581756a (diff) | |
parent | ff5f74dcdc0d889aabed8351223a71ddd55f8ccc (diff) |
Merge "Review checkstyle configuration"
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/org/onap/cps/ncmp/rest/controller/DmiRestController.java | 2 |
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); } |