[Fb-contrib-commit] SF.net SVN: fb-contrib:[1601] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2010-08-31 01:30:13
|
Revision: 1601
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1601&view=rev
Author: dbrosius
Date: 2010-08-31 01:30:07 +0000 (Tue, 31 Aug 2010)
Log Message:
-----------
rollback -- wasn't working as i first thought
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 2010-08-31 01:26:54 UTC (rev 1600)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/LostExceptionStackTrace.java 2010-08-31 01:30:07 UTC (rev 1601)
@@ -246,20 +246,7 @@
&& itm.getUserValue() == null) {
if (!isPre14Class(itm.getJavaClass()))
{
- int priority = NORMAL_PRIORITY;
-
- LocalVariableTable lvt = getCode().getLocalVariableTable();
- if (lvt != null) {
- LocalVariable lv = lvt.getLocalVariable(itm.getRegisterNumber(), getPC());
- if (lv == null) {
- /** It's probably synthetic, for instance throwing an exception
- * out of a synchronized block
- */
- priority = LOW_PRIORITY;
- }
- }
-
- bugReporter.reportBug(new BugInstance(this, "LEST_LOST_EXCEPTION_STACK_TRACE", priority)
+ bugReporter.reportBug(new BugInstance(this, "LEST_LOST_EXCEPTION_STACK_TRACE", NORMAL_PRIORITY)
.addClass(this)
.addMethod(this)
.addSourceLine(this));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|