You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by jo...@apache.org on 2004/03/23 21:06:41 UTC

cvs commit: cocoon-2.1/src/blocks/scratchpad/java/org/apache/cocoon/components/source/impl DelayRefresher.java

joerg       2004/03/23 12:06:41

  Modified:    src/blocks/scratchpad/java/org/apache/cocoon/components/source/impl
                        DelayRefresher.java
  Log:
  unnecessary type cast removed
  
  Revision  Changes    Path
  1.3       +2 -2      cocoon-2.1/src/blocks/scratchpad/java/org/apache/cocoon/components/source/impl/DelayRefresher.java
  
  Index: DelayRefresher.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/blocks/scratchpad/java/org/apache/cocoon/components/source/impl/DelayRefresher.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DelayRefresher.java	23 Mar 2004 16:28:54 -0000	1.2
  +++ DelayRefresher.java	23 Mar 2004 20:06:41 -0000	1.3
  @@ -231,7 +231,7 @@
   		try {
   		    this.scheduler.addPeriodicJob(this.getClass().getName(), 
   		                                  this,
  -		                                  (long) writeInterval,
  +		                                  writeInterval,
   		                                  true,
   		                                  null,
   		                                  null);