Browse Source

Update source to match output from gofmt 1.17

pull/487/merge
Gary Burd 3 years ago committed by GitHub
parent
commit
1905f7e442
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      client_clone.go
  2. 1
      client_clone_legacy.go
  3. 1
      conn_write.go
  4. 1
      conn_write_legacy.go
  5. 1
      examples/echo/client.go
  6. 1
      examples/echo/server.go
  7. 1
      mask.go
  8. 1
      mask_safe.go
  9. 1
      trace.go
  10. 1
      trace_17.go

1
client_clone.go

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build go1.8
// +build go1.8
package websocket

1
client_clone_legacy.go

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !go1.8
// +build !go1.8
package websocket

1
conn_write.go

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build go1.8
// +build go1.8
package websocket

1
conn_write_legacy.go

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !go1.8
// +build !go1.8
package websocket

1
examples/echo/client.go

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build ignore
// +build ignore
package main

1
examples/echo/server.go

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build ignore
// +build ignore
package main

1
mask.go

@ -2,6 +2,7 @@
// this source code is governed by a BSD-style license that can be found in the
// LICENSE file.
//go:build !appengine
// +build !appengine
package websocket

1
mask_safe.go

@ -2,6 +2,7 @@
// this source code is governed by a BSD-style license that can be found in the
// LICENSE file.
//go:build appengine
// +build appengine
package websocket

1
trace.go

@ -1,3 +1,4 @@
//go:build go1.8
// +build go1.8
package websocket

1
trace_17.go

@ -1,3 +1,4 @@
//go:build !go1.8
// +build !go1.8
package websocket

Loading…
Cancel
Save