Revert "Fix KVM agent connection issue"

This reverts commit 4a3296bd5e489997c2c5ffb2368f688c3a1b9498.
This commit is contained in:
Sheng Yang 2011-08-04 11:43:55 -07:00
parent 75fc541754
commit 9ae546e67b
1 changed files with 1 additions and 3 deletions

View File

@ -26,11 +26,9 @@ import com.cloud.network.Networks.RouterPrivateIpStrategy;
import com.cloud.vm.VirtualMachine.State;
public class StartupRoutingCommand extends StartupCommand {
public static class VmState {
public class VmState {
State state;
String host;
public VmState() {
}
public VmState(State state, String host) {
this.state = state;
this.host = host;