[Fb-contrib-commit] SF.net SVN: fb-contrib: [758] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-12-22 21:36:40
|
Revision: 758 http://svn.sourceforge.net/fb-contrib/?rev=758&view=rev Author: dbrosius Date: 2006-12-22 13:36:39 -0800 (Fri, 22 Dec 2006) Log Message: ----------- avoid autoboxing Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PossiblyRedundantMethodCalls.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PossiblyRedundantMethodCalls.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PossiblyRedundantMethodCalls.java 2006-12-22 21:35:57 UTC (rev 757) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PossiblyRedundantMethodCalls.java 2006-12-22 21:36:39 UTC (rev 758) @@ -155,7 +155,7 @@ branchTargets.clear(); CodeException[] codeExceptions = obj.getExceptionTable(); for (CodeException codeEx : codeExceptions) { - branchTargets.add(codeEx.getHandlerPC()); + branchTargets.add(Integer14.valueOf(codeEx.getHandlerPC())); } super.visitCode(obj); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |