ONOS-812 - incorrect default values in CLI help
Change-Id: Ia7e3e9d2ace870e4d6cde240087b2235308719af
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -51,7 +51,7 @@ public abstract class ConnectivityIntentCommand extends AbstractShellCommand { | ... | @@ -51,7 +51,7 @@ public abstract class ConnectivityIntentCommand extends AbstractShellCommand { |
51 | 51 | ||
52 | @Option(name = "-t", aliases = "--ethType", description = "Ethernet Type", | 52 | @Option(name = "-t", aliases = "--ethType", description = "Ethernet Type", |
53 | required = false, multiValued = false) | 53 | required = false, multiValued = false) |
54 | - private String ethTypeString = ""; | 54 | + private String ethTypeString = null; |
55 | 55 | ||
56 | @Option(name = "--ipProto", description = "IP Protocol", | 56 | @Option(name = "--ipProto", description = "IP Protocol", |
57 | required = false, multiValued = false) | 57 | required = false, multiValued = false) |
... | @@ -75,7 +75,7 @@ public abstract class ConnectivityIntentCommand extends AbstractShellCommand { | ... | @@ -75,7 +75,7 @@ public abstract class ConnectivityIntentCommand extends AbstractShellCommand { |
75 | 75 | ||
76 | @Option(name = "-b", aliases = "--bandwidth", description = "Bandwidth", | 76 | @Option(name = "-b", aliases = "--bandwidth", description = "Bandwidth", |
77 | required = false, multiValued = false) | 77 | required = false, multiValued = false) |
78 | - private String bandwidthString = ""; | 78 | + private String bandwidthString = null; |
79 | 79 | ||
80 | @Option(name = "-l", aliases = "--lambda", description = "Lambda", | 80 | @Option(name = "-l", aliases = "--lambda", description = "Lambda", |
81 | required = false, multiValued = false) | 81 | required = false, multiValued = false) | ... | ... |
-
Please register or login to post a comment