From: markt Date: Thu, 15 Jan 2009 13:31:45 +0000 (+0000) Subject: Fix generics warnings X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=5caced1b689524a3b0b90b58aced36ab8cf2cecb;p=tomcat7.0 Fix generics warnings git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@734701 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/tomcat/util/collections/Queue.java b/java/org/apache/tomcat/util/collections/Queue.java index c2e177083..9617bb24c 100644 --- a/java/org/apache/tomcat/util/collections/Queue.java +++ b/java/org/apache/tomcat/util/collections/Queue.java @@ -29,7 +29,7 @@ import java.util.Vector; * @deprecated */ public class Queue { - private Vector vector = new Vector(); + private Vector vector = new Vector(); private boolean stopWaiting=false; private boolean waiting=false;