Code clean-up for CheckStyle.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1393626 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
28476afb7d
commit
ca9cbf976e
File diff suppressed because it is too large
Load Diff
|
@ -18,8 +18,8 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.apache.commons.lang3;
|
package org.apache.commons.lang3;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertArrayEquals;
|
import static org.junit.Assert.assertArrayEquals;
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.fail;
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -506,8 +506,11 @@ public class ConversionTest {
|
||||||
static String dbgPrint(boolean[] src) {
|
static String dbgPrint(boolean[] src) {
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
for (boolean e : src) {
|
for (boolean e : src) {
|
||||||
if (e) sb.append("1,");
|
if (e) {
|
||||||
else sb.append("0,");
|
sb.append("1,");
|
||||||
|
} else {
|
||||||
|
sb.append("0,");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
String out = sb.toString();
|
String out = sb.toString();
|
||||||
return out.substring(0, out.length() - 1);
|
return out.substring(0, out.length() - 1);
|
||||||
|
|
Loading…
Reference in New Issue