new commented-out formatting utility

This commit is contained in:
Eric House 2014-06-28 15:38:14 -07:00
parent 177fbb0bad
commit cdf5d6ec9a

View file

@ -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();