User: lqd     
  Date: 02/02/01 20:02:23

  Modified:    src/main/org/jboss/mq/il/uil UILServerIL.java
                        UILServerILService.java
  Log:
  Fix typo.
  
  this just ate 30mins of my time ... realizing a missing "s" in  the class
  name ... argh!
  
  Revision  Changes    Path
  1.6       +3 -3      jbossmq/src/main/org/jboss/mq/il/uil/UILServerIL.java
  
  Index: UILServerIL.java
  ===================================================================
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/UILServerIL.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- UILServerIL.java  2001/11/22 07:11:12     1.5
  +++ UILServerIL.java  2002/02/02 04:02:23     1.6
  @@ -23,7 +23,7 @@
   import javax.jms.Topic;
   import org.jboss.mq.AcknowledgementRequest;
   import org.jboss.mq.ConnectionToken;
  -import org.jboss.mq.DurableSubcriptionID;
  +import org.jboss.mq.DurableSubscriptionID;
   import org.jboss.mq.SpyDestination;
   import org.jboss.mq.SpyMessage;
   import org.jboss.mq.TransactionRequest;
  @@ -37,7 +37,7 @@
    *
    * @author    Hiram Chirino ([EMAIL PROTECTED])
    * @author    Norbert Lataille ([EMAIL PROTECTED])
  - * @version   $Revision: 1.5 $
  + * @version   $Revision: 1.6 $
    * @created   August 16, 2001
    */
   public class UILServerIL implements java.io.Serializable, Cloneable, 
org.jboss.mq.il.ServerIL
  @@ -369,7 +369,7 @@
       * @exception JMSException  Description of Exception
       * @exception Exception     Description of Exception
       */
  -   public synchronized void destroySubscription(DurableSubcriptionID id)
  +   public synchronized void destroySubscription(DurableSubscriptionID id)
             throws JMSException, Exception
      {
         checkConnection();
  
  
  
  1.16      +3 -3      jbossmq/src/main/org/jboss/mq/il/uil/UILServerILService.java
  
  Index: UILServerILService.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/UILServerILService.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- UILServerILService.java   2002/02/02 03:54:20     1.15
  +++ UILServerILService.java   2002/02/02 04:02:23     1.16
  @@ -29,7 +29,7 @@
   import javax.naming.InitialContext;
   import org.jboss.mq.AcknowledgementRequest;
   import org.jboss.mq.ConnectionToken;
  -import org.jboss.mq.DurableSubcriptionID;
  +import org.jboss.mq.DurableSubscriptionID;
   
   import org.jboss.mq.GenericConnectionFactory;
   import org.jboss.mq.SpyDestination;
  @@ -46,7 +46,7 @@
    * Implements the ServerILJMXService which is used to manage the JVM IL.
    *
    * @author    Hiram Chirino ([EMAIL PROTECTED])
  - * @version   $Revision: 1.15 $
  + * @version   $Revision: 1.16 $
    */
   public class UILServerILService extends org.jboss.mq.il.ServerILJMXService 
implements Runnable, UILServerILServiceMBean
   {
  @@ -274,7 +274,7 @@
                     server.unsubscribe(connectionToken, in.readInt());
                     break;
                  case m_destroySubscription:
  -                  server.destroySubscription((DurableSubcriptionID)in.readObject());
  +                  
server.destroySubscription((DurableSubscriptionID)in.readObject());
                     break;
                  case m_checkUser:
                     result = server.checkUser((String)in.readObject(), 
(String)in.readObject());
  
  
  

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

Reply via email to