opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java
@@ -23,7 +23,7 @@ * * * Copyright 2006-2010 Sun Microsystems, Inc. * Portions Copyright 2011 ForgeRock AS * Portions Copyright 2011-2012 ForgeRock AS */ package org.opends.server.replication; @@ -584,7 +584,7 @@ // Check that no entries have been found LinkedList<SearchResultEntry> entries = op.getSearchEntries(); assertTrue(entries != null); StringBuffer sb = new StringBuffer(); StringBuilder sb = new StringBuilder(); for (SearchResultEntry entry : entries) { sb.append(entry.toLDIFString()); opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/ReplicationServerLoadBalancingTest.java
@@ -23,7 +23,7 @@ * * * Copyright 2009-2010 Sun Microsystems, Inc. * Portions Copyright 2011 ForgeRock AS * Portions Copyright 2011-2012 ForgeRock AS */ package org.opends.server.replication.plugin; @@ -939,7 +939,7 @@ // Translate an int array into a human readable string private static String intArrayToString(int[] ints) { StringBuffer sb = new StringBuffer("["); StringBuilder sb = new StringBuilder("["); for (int i = 0; i < ints.length; i++) { if (i != 0) @@ -953,7 +953,7 @@ // Translate an int[][] array into a human readable string private static String intArrayToString(int[][] ints) { StringBuffer sb = new StringBuffer("["); StringBuilder sb = new StringBuilder("["); for (int i = 0; i < ints.length; i++) { if (i != 0)