[Fb-contrib-commit] SF.net SVN: fb-contrib:[1144] trunk/fb-contrib
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-03-16 03:59:56
|
Revision: 1144
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1144&view=rev
Author: dbrosius
Date: 2009-03-16 03:59:42 +0000 (Mon, 16 Mar 2009)
Log Message:
-----------
get ready for 3.8.1
Modified Paths:
--------------
trunk/fb-contrib/build.xml
trunk/fb-contrib/etc/findbugs.xml
trunk/fb-contrib/samples/LEST_Sample.java
Modified: trunk/fb-contrib/build.xml
===================================================================
--- trunk/fb-contrib/build.xml 2009-03-16 03:09:24 UTC (rev 1143)
+++ trunk/fb-contrib/build.xml 2009-03-16 03:59:42 UTC (rev 1144)
@@ -20,7 +20,7 @@
<property name="javac.deprecation" value="on"/>
<property name="javac.debug" value="on"/>
- <property name="fb-contrib.version" value="3.9.0"/>
+ <property name="fb-contrib.version" value="3.8.1"/>
<target name="clean" description="removes all generated collateral">
<delete dir="${classes.dir}"/>
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2009-03-16 03:09:24 UTC (rev 1143)
+++ trunk/fb-contrib/etc/findbugs.xml 2009-03-16 03:59:42 UTC (rev 1144)
@@ -334,7 +334,8 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.BogusExceptionDeclaration"
speed="moderate"
- reports="BED_BOGUS_EXCEPTION_DECLARATION" />
+ reports="BED_BOGUS_EXCEPTION_DECLARATION"
+ hidden="true" />
<!-- BugPattern -->
Modified: trunk/fb-contrib/samples/LEST_Sample.java
===================================================================
--- trunk/fb-contrib/samples/LEST_Sample.java 2009-03-16 03:09:24 UTC (rev 1143)
+++ trunk/fb-contrib/samples/LEST_Sample.java 2009-03-16 03:59:42 UTC (rev 1144)
@@ -101,6 +101,19 @@
}
}
+ public void testLestFP6(String s) throws Exception
+ {
+ double d;
+ try
+ {
+ d = Double.parseDouble(s);
+ }
+ finally
+ {
+ throw new Exception("Yikes");
+ }
+ }
+
private Exception wrap(Exception e) {
return new Exception(e);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|