remm 2004/02/03 05:03:53
Modified: coyote/src/java/org/apache/coyote Request.java
Log:
- Hashtable -> HashMap.
Revision Changes Path
1.26 +3 -3
jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/Request.java
Index: Request.java
===================================================================
RCS file:
/home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/Request.java,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- Request.java 2 Dec 2003 23:01:00 -0000 1.25
+++ Request.java 3 Feb 2004 13:03:53 -0000 1.26
@@ -61,7 +61,7 @@
package org.apache.coyote;
import java.io.IOException;
-import java.util.Hashtable;
+import java.util.HashMap;
import org.apache.tomcat.util.buf.ByteChunk;
import org.apache.tomcat.util.buf.MessageBytes;
@@ -189,7 +189,7 @@
private MessageBytes remoteUser=new MessageBytes();
private MessageBytes authType=new MessageBytes();
- private Hashtable attributes=new Hashtable();
+ private HashMap attributes=new HashMap();
private Response response;
private ActionHook hook;
@@ -432,7 +432,7 @@
attributes.put( name, o );
}
- public Hashtable getAttributes() {
+ public HashMap getAttributes() {
return attributes;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]