[Fb-contrib-commit] SF.net SVN: fb-contrib:[1163] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-04-17 08:35:17
|
Revision: 1163
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1163&view=rev
Author: dbrosius
Date: 2009-04-17 08:35:16 +0000 (Fri, 17 Apr 2009)
Log Message:
-----------
oops, fix bad comparison
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 2009-04-17 08:25:37 UTC (rev 1162)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java 2009-04-17 08:35:16 UTC (rev 1163)
@@ -372,7 +372,7 @@
*/
private Object getCallingObject() {
String sig = getSigConstantOperand();
- if ("V".equals(Type.getReturnType(sig)))
+ if ("V".equals(Type.getReturnType(sig).getSignature()))
{
return null;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|