User: kimptoc 
  Date: 01/07/02 04:35:45

  Modified:    src/main/org/jboss/web ThreadPool.java
  Log:
  fixes to get a clean jikes compile - [ #433345 ] Jikes patch - thanx Jesper
  
  Revision  Changes    Path
  1.6       +4 -4      jboss/src/main/org/jboss/web/ThreadPool.java
  
  Index: ThreadPool.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/web/ThreadPool.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ThreadPool.java   2001/06/18 20:01:29     1.5
  +++ ThreadPool.java   2001/07/02 11:35:45     1.6
  @@ -14,7 +14,7 @@
    *  A simple thread pool.
    *      
    *  <a href="mailto:[EMAIL PROTECTED]";>Rickard �berg</a>
  - *  @version $Revision: 1.5 $
  + *  @version $Revision: 1.6 $
    */
   public class ThreadPool
   {
  @@ -112,7 +112,7 @@
         public synchronized void die()
         {
            running = false;
  -         notify();
  +         this.notify();
         }
   
         /**
  @@ -126,7 +126,7 @@
            if (this.work != null)
              throw new IllegalStateException("Worker already has work to do.");
            this.work = work;
  -         notify();
  +         this.notify();
         }
   
         /**
  @@ -153,7 +153,7 @@
               synchronized (this) {
                  while (running && work == null) {
                     try {
  -                     wait();
  +                     this.wait();
                     } catch (InterruptedException e) {
                        // Ignore
                     }
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to