diff --git a/tools/cooja/java/org/contikios/cooja/mote/memory/MemoryLayout.java b/tools/cooja/java/org/contikios/cooja/mote/memory/MemoryLayout.java index aa3f7a743..132af62d0 100644 --- a/tools/cooja/java/org/contikios/cooja/mote/memory/MemoryLayout.java +++ b/tools/cooja/java/org/contikios/cooja/mote/memory/MemoryLayout.java @@ -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;