aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/model/CommandProperty.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/model/CommandProperty.java')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/model/CommandProperty.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/model/CommandProperty.java b/vid-app-common/src/main/java/org/onap/vid/model/CommandProperty.java
index 4f5ee173f..e398c5428 100644
--- a/vid-app-common/src/main/java/org/onap/vid/model/CommandProperty.java
+++ b/vid-app-common/src/main/java/org/onap/vid/model/CommandProperty.java
@@ -20,8 +20,6 @@
package org.onap.vid.model;
-import java.util.Map;
-
/**
* The Class Command Property.
*/
@@ -87,7 +85,6 @@ public class CommandProperty {
}
public String toString () {
- String result = "displayName=" + displayName + " command=" + command + " inputName" + inputName;
- return result;
+ return "displayName=" + displayName + " command=" + command + " inputName" + inputName;
}
}