From 15f47f18900525848ca7d82e3539c11074119732 Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Fri, 22 Sep 2017 11:29:42 +0100 Subject: [PATCH] Remove debug fmt.Println --- src/github.com/matrix-org/dendrite/syncapi/sync/requestpool.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/github.com/matrix-org/dendrite/syncapi/sync/requestpool.go b/src/github.com/matrix-org/dendrite/syncapi/sync/requestpool.go index 7b4bbcbcf..56ba3d13d 100644 --- a/src/github.com/matrix-org/dendrite/syncapi/sync/requestpool.go +++ b/src/github.com/matrix-org/dendrite/syncapi/sync/requestpool.go @@ -16,7 +16,6 @@ package sync import ( "encoding/json" - "fmt" "net/http" "time" @@ -133,7 +132,6 @@ func (rp *RequestPool) OnIncomingStateRequest(req *http.Request, roomID string) ClientEvent: gomatrixserverlib.ToClientEvent(event, gomatrixserverlib.FormatAll), } var prevEventRef types.PrevEventRef - fmt.Println(len(event.Unsigned())) if len(event.Unsigned()) > 0 { if err := json.Unmarshal(event.Unsigned(), &prevEventRef); err != nil { return httputil.LogThenError(req, err)