Updated Branches: refs/heads/master 4a5fd5410 -> b8425091e
Fixing AverageLoadAverageEvent constructor Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/b5f6982a Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/b5f6982a Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/b5f6982a Branch: refs/heads/master Commit: b5f6982a8ec53e9e8141d68d563fcbf9c15e9e83 Parents: 5b4cb2f Author: Lahiru Sandaruwan <[email protected]> Authored: Fri Jan 10 11:59:32 2014 +0530 Committer: Lahiru Sandaruwan <[email protected]> Committed: Fri Jan 10 11:59:32 2014 +0530 ---------------------------------------------------------------------- .../messaging/event/health/stat/AverageLoadAverageEvent.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/b5f6982a/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/event/health/stat/AverageLoadAverageEvent.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/event/health/stat/AverageLoadAverageEvent.java b/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/event/health/stat/AverageLoadAverageEvent.java index ba5abb3..db03435 100644 --- a/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/event/health/stat/AverageLoadAverageEvent.java +++ b/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/event/health/stat/AverageLoadAverageEvent.java @@ -29,11 +29,11 @@ public class AverageLoadAverageEvent extends Event { private final String clusterId; private final float value; - public AverageLoadAverageEvent(String networkPartitionId, String clusterId, float value, String networkPartitionId1, String clusterId1, float value1){ + public AverageLoadAverageEvent(String networkPartitionId, String clusterId, float value){ - this.networkPartitionId = networkPartitionId1; - this.clusterId = clusterId1; - this.value = value1; + this.networkPartitionId = networkPartitionId; + this.clusterId = clusterId; + this.value = value; }
