[Fb-contrib-commit] SF.net SVN: fb-contrib: [757] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/d
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-12-22 21:36:01
|
Revision: 757 http://svn.sourceforge.net/fb-contrib/?rev=757&view=rev Author: dbrosius Date: 2006-12-22 13:35:57 -0800 (Fri, 22 Dec 2006) Log Message: ----------- avoid autoboxing Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseToArray.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseToArray.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseToArray.java 2006-12-22 21:34:42 UTC (rev 756) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseToArray.java 2006-12-22 21:35:57 UTC (rev 757) @@ -143,9 +143,8 @@ } else if (((seen == ISTORE) || ((seen >= ISTORE_0) && (seen <= ISTORE_3))) || ((seen == ASTORE) || ((seen >= ASTORE_0) && (seen <= ASTORE_3)))) { if (stack.getStackDepth() > 0) { - reg = Integer14.valueOf(RegisterUtils.getStoreReg(this, seen)); uValue = stack.getStackItem(0).getUserValue(); - userValues.put(reg, uValue); + userValues.put(Integer14.valueOf(RegisterUtils.getStoreReg(this, seen)), uValue); } } else if (((seen == ILOAD) || ((seen >= ILOAD_0) && (seen <= ILOAD_3))) || ((seen == ALOAD) || ((seen >= ALOAD_0) && (seen <= ALOAD_3)))) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |