donaldp     2002/09/09 14:24:19

  Modified:    monitor/src/java/org/apache/avalon/excalibur/monitor
                        Resource.java
  Log:
  Make property listeners non-static
  
  Revision  Changes    Path
  1.16      +5 -2      
jakarta-avalon-excalibur/monitor/src/java/org/apache/avalon/excalibur/monitor/Resource.java
  
  Index: Resource.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/monitor/src/java/org/apache/avalon/excalibur/monitor/Resource.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Resource.java     8 Sep 2002 00:39:41 -0000       1.15
  +++ Resource.java     9 Sep 2002 21:24:19 -0000       1.16
  @@ -29,7 +29,10 @@
   {
       protected static final String MODIFIED = "last-modified";
   
  -    private static final Set m_propertyListeners = Collections.synchronizedSet( new 
HashSet() );
  +    /**
  +     * The set of listeners for this particular resource.
  +     */
  +    private final Set m_propertyListeners = Collections.synchronizedSet( new 
HashSet() );
   
       /**
        * @deprecated Developers should use the setter/getters
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to