[cooja] MemoryLayout: Remove annoying println

This commit is contained in:
Enrico Joerns 2014-10-02 01:14:07 +02:00
parent af5dcc628a
commit 95b54f415e

View file

@ -166,7 +166,6 @@ public class MemoryLayout {
int nextsize = nextType.getSize();
/* limit padding to word size */
nextsize = nextsize > WORD_SIZE ? WORD_SIZE : nextsize;
System.out.println("Nextsize: " + nextsize);
/* calc padding */
int pad = nextsize - currType.getSize();
return pad;