From 4f07dd2309362a4d6c0ecf59e14a5e486d4d29e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Nu=C8=9Biu?= Date: Fri, 22 Dec 2017 18:43:21 +0200 Subject: [PATCH] Removing unused variable: DataBufferSize --- server/server/connection.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/server/server/connection.go b/server/server/connection.go index c73c348..804a124 100644 --- a/server/server/connection.go +++ b/server/server/connection.go @@ -21,11 +21,6 @@ import ( "github.com/spf13/viper" ) -// DataBufferSize the maximum size of the data buffer. -// The data buffer is used at reading from files, the buffer -// is also send to the client. -const DataBufferSize = 1024 * 1024 - // ConfigPath is used by the config package to find the config file. var ConfigPath string