From c3625768374116e12874b065d1494d4749b181d5 Mon Sep 17 00:00:00 2001 From: kishan Date: Thu, 21 Oct 2010 17:53:50 +0530 Subject: [PATCH] bug 6251: use bytes sent and recieved fileds in the super class status 6251: resolved fixed --- core/src/com/cloud/agent/api/StopAnswer.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/core/src/com/cloud/agent/api/StopAnswer.java b/core/src/com/cloud/agent/api/StopAnswer.java index fef9d405e19..9b1c71d58a6 100755 --- a/core/src/com/cloud/agent/api/StopAnswer.java +++ b/core/src/com/cloud/agent/api/StopAnswer.java @@ -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; - } }