luetzkendorf    2004/09/28 04:34:24

  Modified:    src/stores/org/apache/slide/store/mem Tag:
                        SLIDE_2_1_RELEASE_BRANCH
                        AbstractTransientStore.java
  Log:
  fix to make the store JDK1.3 compatible
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.3.2.1   +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.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- AbstractTransientStore.java       28 Jul 2004 09:34:05 -0000      1.3
  +++ AbstractTransientStore.java       28 Sep 2004 11:34:23 -0000      1.3.2.1
  @@ -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