[Fb-contrib-commit] SF.net SVN: fb-contrib:[1096] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-02-20 07:10:38
|
Revision: 1096
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1096&view=rev
Author: dbrosius
Date: 2009-02-20 07:10:32 +0000 (Fri, 20 Feb 2009)
Log Message:
-----------
add static exception builders to the ignore set
Modified Paths:
--------------
trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LostExceptionStackTrace.java
Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LostExceptionStackTrace.java
===================================================================
--- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LostExceptionStackTrace.java 2009-02-20 07:07:12 UTC (rev 1095)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LostExceptionStackTrace.java 2009-02-20 07:10:32 UTC (rev 1096)
@@ -222,7 +222,7 @@
} else if (isPossibleExBuilder(catchInfo.getRegister())) {
markAsValid = true;
}
- } else if (seen == INVOKEINTERFACE) {
+ } else if ((seen == INVOKEINTERFACE) || (seen == INVOKESTATIC)) {
if (isPossibleExBuilder(catchInfo.getRegister()))
markAsValid = true;
} else if (seen == ATHROW) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|