You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ad...@apache.org on 2004/04/16 01:15:55 UTC

cvs commit: incubator-geronimo/modules/network/src/java/org/apache/geronimo/network/protocol LossyProtocol.java

adc         2004/04/15 16:15:55

  Modified:    modules/network/src/java/org/apache/geronimo/network/protocol
                        LossyProtocol.java
  Log:
  Protocol begins its life as stopped
  
  Revision  Changes    Path
  1.4       +2 -2      incubator-geronimo/modules/network/src/java/org/apache/geronimo/network/protocol/LossyProtocol.java
  
  Index: LossyProtocol.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/network/src/java/org/apache/geronimo/network/protocol/LossyProtocol.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- LossyProtocol.java	17 Mar 2004 03:11:59 -0000	1.3
  +++ LossyProtocol.java	15 Apr 2004 23:15:55 -0000	1.4
  @@ -27,7 +27,7 @@
   
       private final int STARTED = 0;
       private final int STOPPED = 1;
  -    private int state = STARTED;
  +    private int state = STOPPED;
   
       private Random upRandom = new Random();
       private Random downRandom = new Random();