From: markt Date: Mon, 17 May 2010 17:38:35 +0000 (+0000) Subject: Fix Eclipse warning in webapps X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=eb093f4872839d3b8f52b6c9f480233d69a2cff2;p=tomcat7.0 Fix Eclipse warning in webapps git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@945265 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/examples/WEB-INF/classes/async/Stockticker.java b/webapps/examples/WEB-INF/classes/async/Stockticker.java index b99fe4b6c..f61402cf9 100644 --- a/webapps/examples/WEB-INF/classes/async/Stockticker.java +++ b/webapps/examples/WEB-INF/classes/async/Stockticker.java @@ -157,9 +157,9 @@ public class Stockticker implements Runnable { public boolean equals(Object other) { if (other instanceof Stock) { return this.symbol.equals(((Stock) other).symbol); - } else { - return false; } + + return false; } @Override