OSDN Git Service

Thanos did someting
[bytom/vapor.git] / vendor / github.com / gorilla / websocket / conn_write.go
diff --git a/vendor/github.com/gorilla/websocket/conn_write.go b/vendor/github.com/gorilla/websocket/conn_write.go
deleted file mode 100644 (file)
index a509a21..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2016 The Gorilla WebSocket Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build go1.8
-
-package websocket
-
-import "net"
-
-func (c *Conn) writeBufs(bufs ...[]byte) error {
-       b := net.Buffers(bufs)
-       _, err := b.WriteTo(c.conn)
-       return err
-}