bug 6251: use bytes sent and recieved fileds in the super class

status 6251: resolved fixed
This commit is contained in:
kishan 2010-10-21 17:53:50 +05:30
parent bec09a4323
commit c362576837
1 changed files with 0 additions and 9 deletions

View File

@ -19,8 +19,6 @@ package com.cloud.agent.api;
public class StopAnswer extends RebootAnswer {
Integer vncPort;
Long bytesSent;
Long bytesReceived;
protected StopAnswer() {
}
@ -40,11 +38,4 @@ public class StopAnswer extends RebootAnswer {
return vncPort;
}
public Long getBytesReceived() {
return bytesReceived;
}
public Long getBytesSent() {
return bytesSent;
}
}