[Fb-contrib-commit] SF.net SVN: fb-contrib: [766] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2007-01-03 22:55:40
|
Revision: 766 http://svn.sourceforge.net/fb-contrib/?rev=766&view=rev Author: dbrosius Date: 2007-01-03 14:55:37 -0800 (Wed, 03 Jan 2007) Log Message: ----------- Bug 1626633: visitCode(obj) needs to call super.visitCode(obj) not, super.visit(obj) Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/InefficientStringBuffering.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/InefficientStringBuffering.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/InefficientStringBuffering.java 2007-01-02 18:24:44 UTC (rev 765) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/InefficientStringBuffering.java 2007-01-03 22:55:37 UTC (rev 766) @@ -69,7 +69,7 @@ if (obj.getCode() != null) { stack.resetForMethodEntry(this); sawLDCEmpty = false; - super.visit(obj); + super.visitCode(obj); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |