From 9e27c274b999306510ba22454598630707a9d87b Mon Sep 17 00:00:00 2001
From: Sven Robertz <sven@cs.lth.se>
Date: Wed, 20 Feb 2013 17:16:33 +0100
Subject: [PATCH] removed debug printout

---
 lib/java/se/lth/control/labcomm/LabCommDecoderChannel.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/java/se/lth/control/labcomm/LabCommDecoderChannel.java b/lib/java/se/lth/control/labcomm/LabCommDecoderChannel.java
index 034d31b..d783bd3 100644
--- a/lib/java/se/lth/control/labcomm/LabCommDecoderChannel.java
+++ b/lib/java/se/lth/control/labcomm/LabCommDecoderChannel.java
@@ -143,7 +143,6 @@ public class LabCommDecoderChannel implements LabCommDecoder {
       byte c = in.readByte();
       res |= (c & 0x7f) << 7*i;
       cont = (c & 0x80) != 0;
-      System.out.println("decodePacked32: "+res);
       i++;
     } while(cont);
 
-- 
GitLab