[Fb-contrib-commit] SF.net SVN: fb-contrib: [550] trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/de
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-06-06 04:30:27
|
Revision: 550 Author: dbrosius Date: 2006-06-05 21:30:19 -0700 (Mon, 05 Jun 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=550&view=rev Log Message: ----------- add method name and signature to the bug report Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/RedundantMethodCalls.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/RedundantMethodCalls.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/RedundantMethodCalls.java 2006-06-06 04:27:58 UTC (rev 549) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/RedundantMethodCalls.java 2006-06-06 04:30:19 UTC (rev 550) @@ -110,7 +110,8 @@ bugReporter.reportBug(new BugInstance(this, "RMC_REDUNDANT_METHOD_CALLS", NORMAL_PRIORITY) .addClass(this) .addMethod(this) - .addSourceLine(this)); + .addSourceLine(this) + .addString(methodName + "[" + signature + "]")); } } if (reg >= 0) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |