We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60e492a commit f40f16bCopy full SHA for f40f16b
1 file changed
api/src/org/apache/cloudstack/api/command/admin/vpc/CreateVPCCmdByAdmin.java
@@ -38,10 +38,9 @@ public class CreateVPCCmdByAdmin extends CreateVPCCmd {
38
@Override
39
public void execute() {
40
Vpc vpc = null;
41
- boolean success = true;
42
try {
43
if (isStart()) {
44
- success = _vpcService.startVpc(getEntityId(), true);
+ _vpcService.startVpc(getEntityId(), true);
45
} else {
46
s_logger.debug("Not starting VPC as " + ApiConstants.START + "=false was passed to the API");
47
}
0 commit comments