Cosmetics

Change the output chunk size from 4 to 1 addressable unit, for the plain
text memory exporter.

Change-Id: Iaccebdf87e0d297754bc2dd12fc11f207476871a
This commit is contained in:
Marc Dumais 2016-03-31 13:29:59 -04:00
parent 750f009c20
commit 4ab317096d

View file

@ -486,7 +486,7 @@ public class PlainTextExporter implements IMemoryExporter {
// These variables control how the output will be formatted
// The output data is split by chunks of 1 addressable unit size.
final BigInteger dataCellSize = BigInteger.valueOf(4);
final BigInteger dataCellSize = BigInteger.valueOf(1);
// show 32 bytes of data per line, total. Adjust number of columns to compensate
// for longer addressable unit size
final BigInteger numberOfColumns = BigInteger.valueOf(32).divide(addressableSize);