Deprecate classes that are no longer used.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 19 Nov 2008 23:07:20 +0000 (23:07 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 19 Nov 2008 23:07:20 +0000 (23:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@719119 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/tomcat/util/collections/EmptyEnumeration.java
java/org/apache/tomcat/util/collections/LRUCache.java
java/org/apache/tomcat/util/collections/Queue.java
java/org/apache/tomcat/util/collections/SimpleHashtable.java
java/org/apache/tomcat/util/collections/SimplePool.java

index 22eef49..79c104d 100644 (file)
@@ -20,6 +20,9 @@ package org.apache.tomcat.util.collections;
 import java.util.Enumeration;
 import java.util.NoSuchElementException;
 
+/**
+ * @deprecated
+ */
 public class EmptyEnumeration implements Enumeration {
 
     static EmptyEnumeration staticInstance=new EmptyEnumeration();
index 052840f..76f8699 100644 (file)
@@ -25,6 +25,7 @@ import java.util.Hashtable;
  *
  * @author Ignacio J. Ortega
  *
+ * @deprecated
  */
 
 public class LRUCache
index 39a87a5..c2e1770 100644 (file)
@@ -25,6 +25,8 @@ import java.util.Vector;
  * is not empty.
  *
  * @author Anil V (akv@eng.sun.com)
+ * 
+ * @deprecated
  */
 public class Queue {
     private Vector vector = new Vector();
index 4d083b0..31580f4 100644 (file)
@@ -55,6 +55,7 @@ import java.util.Enumeration;
  * it makes a significant difference when normalizing attributes,
  * which is done for each start-element construct.
  *
+ *@deprecated
  */
 public final class SimpleHashtable implements Enumeration
 {
index ea72586..a516b11 100644 (file)
@@ -24,6 +24,8 @@ package org.apache.tomcat.util.collections;
  *
  * @author Gal Shachor
  * @author Costin Manolache
+ * 
+ * @deprecated
  */
 public final class SimplePool  {