[cooja] MemoryLayout: Remove annoying println
This commit is contained in:
parent
af5dcc628a
commit
95b54f415e
|
@ -166,7 +166,6 @@ public class MemoryLayout {
|
||||||
int nextsize = nextType.getSize();
|
int nextsize = nextType.getSize();
|
||||||
/* limit padding to word size */
|
/* limit padding to word size */
|
||||||
nextsize = nextsize > WORD_SIZE ? WORD_SIZE : nextsize;
|
nextsize = nextsize > WORD_SIZE ? WORD_SIZE : nextsize;
|
||||||
System.out.println("Nextsize: " + nextsize);
|
|
||||||
/* calc padding */
|
/* calc padding */
|
||||||
int pad = nextsize - currType.getSize();
|
int pad = nextsize - currType.getSize();
|
||||||
return pad;
|
return pad;
|
||||||
|
|
Loading…
Reference in a new issue