costin 02/04/17 15:28:55
Modified: jk/java/org/apache/jk/core Msg.java
Log:
Removed unused code.
Msg can become an interface ( or 2 - Serializer/Deserializer ), it's
only role is to add int/string/etc to a buffer. It's quite easy
to add more types and replace the marshaling.
Revision Changes Path
1.5 +0 -15 jakarta-tomcat-connectors/jk/java/org/apache/jk/core/Msg.java
Index: Msg.java
===================================================================
RCS file: /home/cvs/jakarta-tomcat-connectors/jk/java/org/apache/jk/core/Msg.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- Msg.java 6 Feb 2002 17:33:50 -0000 1.4
+++ Msg.java 17 Apr 2002 22:28:55 -0000 1.5
@@ -170,19 +170,4 @@
public abstract int getLen();
public abstract void dump(String msg);
-
-
-
- int tag;
-
- /** Message type - the tag is used to fast dispatch
- * by message type
- */
- public void setTag( int i ) {
- tag=i;
- }
-
- public int getTag() {
- return tag;
- }
}
--
To unsubscribe, e-mail: <mailto:tomcat-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-dev-help@jakarta.apache.org>
|