From be27720c748502673a2e88e7bcfa592a0070937e Mon Sep 17 00:00:00 2001 From: Kslr Date: Sat, 18 May 2019 15:13:49 +0800 Subject: [PATCH] fix codestyle --- common/buf/io.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/common/buf/io.go b/common/buf/io.go index c13a35aa4..cf27ba892 100644 --- a/common/buf/io.go +++ b/common/buf/io.go @@ -63,8 +63,9 @@ func NewReader(reader io.Reader) Reader { if err != nil { newError("failed to get sysconn").Base(err).WriteToLog() } else { - /* Check if ReadVReader Can be used on this reader first - Fix https://github.com/v2ray/v2ray-core/issues/1666 + /* + Check if ReadVReader Can be used on this reader first + Fix https://github.com/v2ray/v2ray-core/issues/1666 */ if ok, _ := checkReadVConstraint(rawConn); ok { return NewReadVReader(reader, rawConn)