[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/loader/deadlock ...
Manik Surtani
msurtani at jboss.com
Sat Dec 30 14:48:49 EST 2006
User: msurtani
Date: 06/12/30 14:48:49
Modified: tests/functional/org/jboss/cache/loader/deadlock
ConcurrentCreationDeadlockTest.java
Log:
Genericised, autoboxed
Revision Changes Path
1.9 +3 -3 JBossCache/tests/functional/org/jboss/cache/loader/deadlock/ConcurrentCreationDeadlockTest.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConcurrentCreationDeadlockTest.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/loader/deadlock/ConcurrentCreationDeadlockTest.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- ConcurrentCreationDeadlockTest.java 30 Dec 2006 17:49:59 -0000 1.8
+++ ConcurrentCreationDeadlockTest.java 30 Dec 2006 19:48:49 -0000 1.9
@@ -397,7 +397,7 @@
*
* @author Marian Nikolov
* @author $Author: msurtani $
- * @version $Date: 2006/12/30 17:49:59 $
+ * @version $Date: 2006/12/30 19:48:49 $
*/
private class Worker extends Thread
{
@@ -467,7 +467,7 @@
}
// the first worker would create a new node for the FQN
// all the others would update the same node
- Fqn fqn = new Fqn(new Fqn("NODE"), new Integer(i));
+ Fqn fqn = new Fqn(new Fqn("NODE"), i);
for (int m = 0; m < m_modificationsPerTx; m++)
{
cache.put(fqn, new Integer(m), new Integer(i));
More information about the jboss-cvs-commits
mailing list