[Fb-contrib-commit] SF.net SVN: fb-contrib:[1558] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2010-05-11 03:50:37
|
Revision: 1558
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1558&view=rev
Author: dbrosius
Date: 2010-05-11 03:50:30 +0000 (Tue, 11 May 2010)
Log Message:
-----------
oops, inverted logic
Modified Paths:
--------------
trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/WriteOnlyCollection.java
Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/WriteOnlyCollection.java
===================================================================
--- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/WriteOnlyCollection.java 2010-05-09 22:30:37 UTC (rev 1557)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/WriteOnlyCollection.java 2010-05-11 03:50:30 UTC (rev 1558)
@@ -211,7 +211,7 @@
clearUserValue(item);
} else if (!"clone".equals(name)) {
Type t = Type.getReturnType(sig);
- if ((t != Type.VOID) && nextOpIsPop()) {
+ if ((t != Type.VOID) && !nextOpIsPop()) {
clearUserValue(item);
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|