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/12 22:42:29 UTC

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

dannyc      00/10/12 13:42:28

  Modified:    src/share/javax/servlet Tag: SERVLET_23_JSP_12
                        ServletContextAttributesListener.java
  Log:
  fixed obvious glitch in javadoc. removed notification listener comment said 'added'
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.2   +1 -1      jakarta-servletapi/src/share/javax/servlet/Attic/ServletContextAttributesListener.java
  
  Index: ServletContextAttributesListener.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi/src/share/javax/servlet/Attic/ServletContextAttributesListener.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- ServletContextAttributesListener.java	2000/08/17 01:33:10	1.1.2.1
  +++ ServletContextAttributesListener.java	2000/10/12 20:42:26	1.1.2.2
  @@ -13,7 +13,7 @@
   public interface ServletContextAttributesListener extends EventListener {
   	/** Notification that a new attribute was added to the servlet context. Called after the attribute is added.*/
   public void attributeAdded(ServletContextAttributeEvent scab);
  -	/** Notification that an existing attribute has been remved from the servlet context. Called after the attribute is added.*/
  +	/** Notification that an existing attribute has been remved from the servlet context. Called after the attribute is removed.*/
   public void attributeRemoved(ServletContextAttributeEvent scab);
   	/** Notification that an attribute on the servlet context has been replaced. Called after the attribute is replaced. */
   public void attributeReplaced(ServletContextAttributeEvent scab);