From c85afceffe3e3f35a1376f41eae5ed9626ca0a1d Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 21 Jul 2014 12:56:42 +0200 Subject: [PATCH] connection: Remove debugging code for now Leave the construct to easily catch what is going on but do not execute inspect right now. --- connection/SMPPConnection.st | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/connection/SMPPConnection.st b/connection/SMPPConnection.st index a2b521e..5ffd0ea 100644 --- a/connection/SMPPConnection.st +++ b/connection/SMPPConnection.st @@ -102,9 +102,7 @@ Osmo.OsmoStreamSocketBase subclass: SMPPConnection [ msg := SMPPMessage readFrom: socket. msg body connectionDispatchOn: self with: msg ] on: Error do: [:e | - e - inspect; - pass + e pass ] ]