Author: trustin
Date: 2010-05-03 05:03:35 -0400 (Mon, 03 May 2010)
New Revision: 5851
Modified:
remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/Counters.java
Log:
Removed trailing spaces
Modified:
remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/Counters.java
===================================================================
---
remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/Counters.java 2010-04-20
16:13:06 UTC (rev 5850)
+++
remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/management/Counters.java 2010-05-03
09:03:35 UTC (rev 5851)
@@ -27,14 +27,14 @@
private final long active;
private final long success;
private final long failure;
-
+
@ConstructorProperties({"active", "success",
"failure"})
public Counters(long active, long success, long failure) {
this.active = active;
this.success = success;
this.failure = failure;
}
-
+
public long getActive() {
return active;
}
@@ -46,7 +46,7 @@
public long getFailure() {
return failure;
}
-
+
@Override
public String toString() {
return active + ", " + success + ", " + failure;
Show replies by date