User: juha    
  Date: 01/01/23 10:59:37

  Modified:    src/org/jboss/admin InvocationEntry.java
  Log:
  using long for time property instead of string. duh!
  
  Revision  Changes    Path
  1.3       +1 -8      admin/src/org/jboss/admin/InvocationEntry.java
  
  Index: InvocationEntry.java
  ===================================================================
  RCS file: /products/cvs/ejboss/admin/src/org/jboss/admin/InvocationEntry.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InvocationEntry.java      2000/12/29 22:35:11     1.2
  +++ InvocationEntry.java      2001/01/23 18:59:36     1.3
  @@ -52,14 +52,7 @@
           setBean(msg.getStringProperty("BEAN"));
           setMethod(msg.getStringProperty("METHOD"));
           setTxID(msg.getStringProperty("ID"));
  -        //setStatus(msg.getIntProperty("STATUS"));
  -        
  -        try {
  -            setTime(Long.parseLong(msg.getStringProperty("TIME")));
  -        }
  -        catch (NumberFormatException e) {
  -            throw new JMSException("Couldn't parse string property 'TIME'");
  -        }
  +        setTime(msg.getLongProperty("TIME"));
       }
       
   /*
  
  
  

Reply via email to