Author: ron.sigal(a)jboss.com
Date: 2010-09-07 16:33:01 -0400 (Tue, 07 Sep 2010)
New Revision: 6097
Modified:
remoting3/trunk/jboss-remoting/src/test/java/org/jboss/remoting3/test/ClientServerRemoteConfigurationTestCase.java
Log:
JBREM-1228: Counter is set to a non-negative number.
Modified:
remoting3/trunk/jboss-remoting/src/test/java/org/jboss/remoting3/test/ClientServerRemoteConfigurationTestCase.java
===================================================================
---
remoting3/trunk/jboss-remoting/src/test/java/org/jboss/remoting3/test/ClientServerRemoteConfigurationTestCase.java 2010-09-07
20:17:51 UTC (rev 6096)
+++
remoting3/trunk/jboss-remoting/src/test/java/org/jboss/remoting3/test/ClientServerRemoteConfigurationTestCase.java 2010-09-07
20:33:01 UTC (rev 6097)
@@ -61,7 +61,7 @@
private static final Logger log =
Logger.getLogger(ClientServerRemoteConfigurationTestCase.class);
- private static int counter = new Random(Math.abs(new Date().getTime())).nextInt();
+ private static int counter = Math.abs(new Random(new Date().getTime()).nextInt());
@BeforeMethod
public void setUp() {
Show replies by date