luetzkendorf    2004/09/28 06:34:49

  Modified:    src/stores/org/apache/slide/store/mem
                        AbstractTransientStore.java
  Log:
  merge with release branch (fix to make the it JDK1.3 compatible)
  
  Revision  Changes    Path
  1.4       +4 -4      
jakarta-slide/src/stores/org/apache/slide/store/mem/AbstractTransientStore.java
  
  Index: AbstractTransientStore.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/src/stores/org/apache/slide/store/mem/AbstractTransientStore.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- AbstractTransientStore.java       28 Jul 2004 09:34:05 -0000      1.3
  +++ AbstractTransientStore.java       28 Sep 2004 13:34:49 -0000      1.4
  @@ -100,7 +100,7 @@
      public void commit(Xid xid, boolean onePhase)
         throws XAException 
      {
  -      debug("commit {0} {1}", xid, Boolean.valueOf(onePhase));
  +      debug("commit {0} {1}", xid, onePhase ? "true" : "false");
         try {
            this.xaResource.commit(xid, onePhase);
         }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to