Thomas Vachuska
Committed by Gerrit Code Review

ONOS-1376 FIxed error in app command to report bad usage better.

Change-Id: Ib1a6c68cbe9fdef15c0b6b5c7e427999b6b39bdd
......@@ -61,6 +61,8 @@ public class ApplicationCommand extends AbstractShellCommand {
service.activate(appId);
} else if (command.equals(DEACTIVATE)) {
service.deactivate(appId);
} else {
print("Unsupported command: %s", command);
}
}
}
......