From: markt Date: Wed, 19 Jan 2011 11:39:06 +0000 (+0000) Subject: Findbugs X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a5893595263b5c3a422b63046a64abccab2309d1;p=tomcat7.0 Findbugs git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1060772 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/res/findbugs/filter-post-7.0.x-fixes.xml b/res/findbugs/filter-post-7.0.x-fixes.xml index 015dcad59..84d2a5030 100644 --- a/res/findbugs/filter-post-7.0.x-fixes.xml +++ b/res/findbugs/filter-post-7.0.x-fixes.xml @@ -38,10 +38,18 @@ - + + + + + + + + + \ No newline at end of file diff --git a/webapps/examples/WEB-INF/classes/async/Stockticker.java b/webapps/examples/WEB-INF/classes/async/Stockticker.java index efe404ccb..889d06f59 100644 --- a/webapps/examples/WEB-INF/classes/async/Stockticker.java +++ b/webapps/examples/WEB-INF/classes/async/Stockticker.java @@ -99,7 +99,7 @@ public class Stockticker implements Runnable { public void tick(Stock stock); } - public static class Stock { + public static final class Stock implements Cloneable { protected static DecimalFormat df = new DecimalFormat("0.00"); protected String symbol = ""; protected double value = 0.0d;