Committed by
Gerrit Code Review
Review Fix - vtn app
Change-Id: I9e1b5031602cb3678a3a8777bab3b2ec8a8a7d48
Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -98,7 +98,7 @@ public class SubnetCreateCommand extends AbstractShellCommand { | ... | @@ -98,7 +98,7 @@ public class SubnetCreateCommand extends AbstractShellCommand { |
98 | protected void execute() { | 98 | protected void execute() { |
99 | SubnetService service = get(SubnetService.class); | 99 | SubnetService service = get(SubnetService.class); |
100 | if (id == null || networkId == null || tenantId == null) { | 100 | if (id == null || networkId == null || tenantId == null) { |
101 | - print(null, "id,networkId,tenantId can not be null"); | 101 | + print("id,networkId,tenantId can not be null"); |
102 | return; | 102 | return; |
103 | } | 103 | } |
104 | Subnet subnet = new DefaultSubnet(SubnetId.subnetId(id), subnetName, | 104 | Subnet subnet = new DefaultSubnet(SubnetId.subnetId(id), subnetName, | ... | ... |
... | @@ -98,7 +98,7 @@ public class SubnetUpdateCommand extends AbstractShellCommand { | ... | @@ -98,7 +98,7 @@ public class SubnetUpdateCommand extends AbstractShellCommand { |
98 | protected void execute() { | 98 | protected void execute() { |
99 | SubnetService service = get(SubnetService.class); | 99 | SubnetService service = get(SubnetService.class); |
100 | if (id == null || networkId == null || tenantId == null) { | 100 | if (id == null || networkId == null || tenantId == null) { |
101 | - print(null, "id,networkId,tenantId can not be null"); | 101 | + print("id,networkId,tenantId can not be null"); |
102 | return; | 102 | return; |
103 | } | 103 | } |
104 | Subnet subnet = new DefaultSubnet(SubnetId.subnetId(id), subnetName, | 104 | Subnet subnet = new DefaultSubnet(SubnetId.subnetId(id), subnetName, | ... | ... |
-
Please register or login to post a comment