From cdf5d6ec9abb109500218a118608339dc9ad832a Mon Sep 17 00:00:00 2001 From: Eric House Date: Sat, 28 Jun 2014 15:38:14 -0700 Subject: [PATCH] new commented-out formatting utility --- .../XWords4/src/org/eehouse/android/xw4/DbgUtils.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DbgUtils.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DbgUtils.java index 4fd01b2dd..2530d5b40 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DbgUtils.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DbgUtils.java @@ -145,6 +145,15 @@ public class DbgUtils { } } + // public static String toString( long[] longs ) + // { + // String[] asStrs = new String[longs.length]; + // for ( int ii = 0; ii < longs.length; ++ii ) { + // asStrs[ii] = String.format("%d", longs[ii] ); + // } + // return TextUtils.join( ", ", asStrs ); + // } + // public static String hexDump( byte[] bytes ) // { // StringBuilder dump = new StringBuilder();