diff options
Diffstat (limited to 'framework/src')
-rw-r--r-- | framework/src/main/java/org/onap/cli/fw/cmd/OnapCommand.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/src/main/java/org/onap/cli/fw/cmd/OnapCommand.java b/framework/src/main/java/org/onap/cli/fw/cmd/OnapCommand.java index abd1dbcc..74e488b4 100644 --- a/framework/src/main/java/org/onap/cli/fw/cmd/OnapCommand.java +++ b/framework/src/main/java/org/onap/cli/fw/cmd/OnapCommand.java @@ -216,7 +216,7 @@ public abstract class OnapCommand { /** * Any additional profile based such as http schema could be initialized. */ - protected List<String> initializeProfileSchema(Map<String, ?> schemaMap, boolean validate) throws OnapCommandException { + protected List<String> initializeProfileSchema(Map<String, ?> schemaMap, boolean validate) throws OnapCommandException { //NOSONAR return new ArrayList<>(); } @@ -231,11 +231,11 @@ public abstract class OnapCommand { } } - protected void preRun() throws OnapCommandException { + protected void preRun() throws OnapCommandException { //NOSONAR log.debug("{} PRE-RUN", this.getName()); } - protected void postRun() throws OnapCommandException { + protected void postRun() throws OnapCommandException { //NOSONAR log.debug("{} POST-RUN", this.getName()); } |