[Fb-contrib-commit] SF.net SVN: fb-contrib:[1668] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2011-06-04 04:45:00
|
Revision: 1668
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1668&view=rev
Author: dbrosius
Date: 2011-06-04 04:44:54 +0000 (Sat, 04 Jun 2011)
Log Message:
-----------
SillynessPotPourri throws ClassCastException - ID: 3309447
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 2011-06-04 00:12:55 UTC (rev 1667)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java 2011-06-04 04:44:54 UTC (rev 1668)
@@ -140,9 +140,7 @@
public void sawOpcode(int seen) {
int reg = -1;
String userValue = null;
- try {
- stack.mergeJumps(this);
-
+ try {
if (((seen >= IFEQ) && (seen <= GOTO)) || (seen == IFNULL) || (seen == IFNONNULL) || (seen == GOTO_W)) {
Integer branchTarget = Integer.valueOf(getBranchTarget());
Set<Integer> branchInsSet = branchTargets.get(branchTarget);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|