[Fb-contrib-commit] SF.net SVN: fb-contrib: [760] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-12-22 21:38:27
|
Revision: 760 http://svn.sourceforge.net/fb-contrib/?rev=760&view=rev Author: dbrosius Date: 2006-12-22 13:38:07 -0800 (Fri, 22 Dec 2006) Log Message: ----------- avoid autoboxing Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java 2006-12-22 21:37:28 UTC (rev 759) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java 2006-12-22 21:38:07 UTC (rev 760) @@ -510,7 +510,7 @@ bugReporter.reportBug(new BugInstance(BloatedAssignmentScope.this, "BAS_BLOATED_ASSIGNMENT_SCOPE", NORMAL_PRIORITY) .addClass(BloatedAssignmentScope.this) .addMethod(BloatedAssignmentScope.this) - .addSourceLine(BloatedAssignmentScope.this, entry.getValue())); + .addSourceLine(BloatedAssignmentScope.this, entry.getValue().intValue())); } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |