[Fb-contrib-commit] SF.net SVN: fb-contrib: [669] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-10-11 00:04:08
|
Revision: 669 http://svn.sourceforge.net/fb-contrib/?rev=669&view=rev Author: dbrosius Date: 2006-10-10 17:04:00 -0700 (Tue, 10 Oct 2006) Log Message: ----------- the handler pc can equal the end pc 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 2006-10-10 23:37:05 UTC (rev 668) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LostExceptionStackTrace.java 2006-10-11 00:04:00 UTC (rev 669) @@ -142,7 +142,7 @@ public CodeException[] collectExceptions(CodeException[] exceptions) { List<CodeException> filteredEx = new ArrayList<CodeException>(); for (CodeException ce : exceptions) { - if ((ce.getStartPC() < ce.getEndPC()) && (ce.getEndPC() < ce.getHandlerPC())) { + if ((ce.getStartPC() < ce.getEndPC()) && (ce.getEndPC() <= ce.getHandlerPC())) { filteredEx.add(ce); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |