[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/marshall ...

Manik Surtani msurtani at jboss.com
Tue Nov 14 03:49:57 EST 2006


  User: msurtani
  Date: 06/11/14 03:49:57

  Modified:    tests/functional/org/jboss/cache/marshall  Tag:
                        Branch_JBossCache_1_4_0
                        TreeCacheMarshallerTestBase.java
  Log:
  Updated for 141
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.2.2.3   +3 -3      JBossCache/tests/functional/org/jboss/cache/marshall/TreeCacheMarshallerTestBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TreeCacheMarshallerTestBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/marshall/TreeCacheMarshallerTestBase.java,v
  retrieving revision 1.2.2.2
  retrieving revision 1.2.2.3
  diff -u -b -r1.2.2.2 -r1.2.2.3
  --- TreeCacheMarshallerTestBase.java	11 Oct 2006 08:23:25 -0000	1.2.2.2
  +++ TreeCacheMarshallerTestBase.java	14 Nov 2006 08:49:57 -0000	1.2.2.3
  @@ -138,7 +138,7 @@
   
      public void testLargeString() throws Exception
      {
  -      StringBuilder sb = new StringBuilder();
  +      StringBuffer sb = new StringBuffer();
         int stringSize = 32767;
   
         for (int i = 0; i < stringSize; i++) sb.append('a');
  @@ -154,7 +154,7 @@
   
      public void testLargerString() throws Exception
      {
  -      StringBuilder sb = new StringBuilder();
  +      StringBuffer sb = new StringBuffer();
         int stringSize = 32768;
   
         for (int i = 0; i < stringSize; i++) sb.append('a');
  @@ -170,7 +170,7 @@
   
      public void testEvenLargerString() throws Exception
      {
  -      StringBuilder sb = new StringBuilder();
  +      StringBuffer sb = new StringBuffer();
         int stringSize = 32769;
   
         for (int i = 0; i < stringSize; i++) sb.append('a');
  
  
  



More information about the jboss-cvs-commits mailing list