You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by bl...@apache.org on 2003/03/31 16:24:43 UTC

cvs commit: avalon-excalibur/monitor/src/java/org/apache/avalon/excalibur/monitor MonitorableURLSource.java

bloritsch    2003/03/31 06:24:43

  Modified:    monitor/src/java/org/apache/avalon/excalibur/monitor
                        MonitorableURLSource.java
  Log:
  use the accessor, not the file field
  
  Revision  Changes    Path
  1.11      +3 -3      avalon-excalibur/monitor/src/java/org/apache/avalon/excalibur/monitor/MonitorableURLSource.java
  
  Index: MonitorableURLSource.java
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/monitor/src/java/org/apache/avalon/excalibur/monitor/MonitorableURLSource.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- MonitorableURLSource.java	29 Mar 2003 18:53:25 -0000	1.10
  +++ MonitorableURLSource.java	31 Mar 2003 14:24:43 -0000	1.11
  @@ -75,9 +75,9 @@
           throws Exception
       {
           checkInfos();
  -        if( null != m_file )
  +        if( null != getFile() )
           {
  -            return new FileResource( m_file.getAbsolutePath() );
  +            return new FileResource( getFile().getAbsolutePath() );
           }
           else
           {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org