You are viewing a plain text version of this content. The canonical link for it is here.
Posted to servletapi-dev@jakarta.apache.org by da...@locus.apache.org on 2000/10/16 20:56:25 UTC

cvs commit: jakarta-servletapi/src/share/javax/servlet SingleThreadModel.java

dannyc      00/10/16 11:56:24

  Modified:    src/share/javax/servlet Tag: SERVLET_23_JSP_12
                        SingleThreadModel.java
  Log:
  editorial change: removed the thread-safe clause in the first phrase of the second para. The javadoc is already clear in the 1st para about exactly what the guarantee to the developer is for STM and is a good precis of the spec language. People have been confused by the word 'thread-safe' thinking is guarantees them more than it does.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.1.1.4.1 +1 -2      jakarta-servletapi/src/share/javax/servlet/SingleThreadModel.java
  
  Index: SingleThreadModel.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi/src/share/javax/servlet/SingleThreadModel.java,v
  retrieving revision 1.1.1.1
  retrieving revision 1.1.1.1.4.1
  diff -u -r1.1.1.1 -r1.1.1.1.4.1
  --- SingleThreadModel.java	2000/04/26 05:22:29	1.1.1.1
  +++ SingleThreadModel.java	2000/10/16 18:56:20	1.1.1.1.4.1
  @@ -71,8 +71,7 @@
    * instance of the servlet, or by maintaining a pool of servlet
    * instances and dispatching each new request to a free servlet.
    *
  - * <p>If a servlet implements this interface, the servlet will
  - * be thread safe. However, this interface does not prevent
  + * <p>This interface does not prevent
    * synchronization problems that result from servlets accessing shared
    * resources such as static class variables or classes outside
    * the scope of the servlet.