[Fb-contrib-commit] SF.net SVN: fb-contrib:[1468] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2010-01-11 03:47:02
|
Revision: 1468
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1468&view=rev
Author: dbrosius
Date: 2010-01-11 03:46:56 +0000 (Mon, 11 Jan 2010)
Log Message:
-----------
remove dup branches
Modified Paths:
--------------
trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/OverzealousCasting.java
Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/OverzealousCasting.java
===================================================================
--- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/OverzealousCasting.java 2010-01-11 03:41:24 UTC (rev 1467)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/OverzealousCasting.java 2010-01-11 03:46:56 UTC (rev 1468)
@@ -101,11 +101,7 @@
}
}
break;
-
- case SAW_NEXT:
- state = State.SAW_NOTHING;
- break;
-
+
case SAW_CHECKCAST:
if ((seen == ASTORE) || ((seen >= ASTORE_0) && (seen <= ASTORE_3))) {
int reg = RegisterUtils.getAStoreReg(this, seen);
@@ -138,6 +134,7 @@
state = State.SAW_NOTHING;
break;
+ case SAW_NEXT:
default:
state = State.SAW_NOTHING;
break;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|