Update of /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23783/src/com/mebigfatguy/fbcontrib/detect
Modified Files:
LocalSynchronizedCollection.java
Log Message:
explicit cast for remove call
Index: LocalSynchronizedCollection.java
===================================================================
RCS file: /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LocalSynchronizedCollection.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- LocalSynchronizedCollection.java 11 Mar 2006 05:01:35 -0000 1.1
+++ LocalSynchronizedCollection.java 11 Mar 2006 06:25:40 -0000 1.2
@@ -134,7 +134,7 @@
} else if ((seen == PUTFIELD) || (seen == ARETURN)) {
if (stack.getStackDepth() > 0) {
OpcodeStack.Item item = stack.getStackItem(0);
- syncRegs.remove(item.getUserValue());
+ syncRegs.remove((Integer)item.getUserValue());
}
}
} finally {
|