You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by to...@apache.org on 2002/09/17 21:55:32 UTC

cvs commit: xml-axis/java/src/org/apache/axis/utils tcpmon.java

tomj        2002/09/17 12:55:32

  Modified:    java/src/org/apache/axis/utils tcpmon.java
  Log:
  Fix up a jikes warning about qualifying wait() and notifyAll()
  
  Revision  Changes    Path
  1.43      +2 -2      xml-axis/java/src/org/apache/axis/utils/tcpmon.java
  
  Index: tcpmon.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/utils/tcpmon.java,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- tcpmon.java	29 Aug 2002 21:02:38 -0000	1.42
  +++ tcpmon.java	17 Sep 2002 19:55:32 -0000	1.43
  @@ -925,7 +925,7 @@
   
                       //  Thread.sleep( 10 );
                       synchronized ( this) {
  -                        wait(1000); //Safety just incase we're not told to wake up.
  +                        this.wait(1000); //Safety just incase we're not told to wake up.
                       }
                   }
   
  @@ -966,7 +966,7 @@
           }
   
           synchronized void wakeUp() {
  -            notifyAll();
  +            this.notifyAll();
           }
   
           public void halt() {