[Fb-contrib-commit] SF.net SVN: fb-contrib:[1184] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-04-25 05:20:07
|
Revision: 1184
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1184&view=rev
Author: dbrosius
Date: 2009-04-25 05:19:58 +0000 (Sat, 25 Apr 2009)
Log Message:
-----------
add check for .size() <= 0
Modified Paths:
--------------
trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java
Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java
===================================================================
--- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java 2009-04-25 05:19:45 UTC (rev 1183)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java 2009-04-25 05:19:58 UTC (rev 1184)
@@ -186,7 +186,7 @@
}
}
- if ((seen == IFEQ) || (seen == IFNE)) {
+ if ((seen == IFEQ) || (seen == IFNE) || (seen == IFGT)) {
if (stack.getStackDepth() == 1) {
OpcodeStack.Item item = stack.getStackItem(0);
if ("size".equals(item.getUserValue())) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|