From e0ac4f7afbc1b62bfeb6aaa7ee691d5f2c103ea2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatko=20=C4=8Calu=C5=A1i=C4=87?= Date: Sun, 6 Nov 2016 11:26:06 +0100 Subject: [PATCH] Remove needless build tags --- fs/file_linux.go | 2 -- fs/file_nonlinux.go | 2 +- handlers.go | 2 -- htpasswd.go | 2 -- router.go | 2 -- router_test.go | 2 -- server.go | 2 -- 7 files changed, 1 insertion(+), 13 deletions(-) diff --git a/fs/file_linux.go b/fs/file_linux.go index 9c39d18..d5e798b 100644 --- a/fs/file_linux.go +++ b/fs/file_linux.go @@ -1,5 +1,3 @@ -// +build linux,go1.4 - package fs import ( diff --git a/fs/file_nonlinux.go b/fs/file_nonlinux.go index 6723480..8e0e86b 100644 --- a/fs/file_nonlinux.go +++ b/fs/file_nonlinux.go @@ -1,4 +1,4 @@ -// +build !linux !go1.4 +// +build !linux package fs diff --git a/handlers.go b/handlers.go index 1eb1977..a79f087 100644 --- a/handlers.go +++ b/handlers.go @@ -1,5 +1,3 @@ -// +build go1.4 - package main import ( diff --git a/htpasswd.go b/htpasswd.go index f9cd4ab..2e20d90 100644 --- a/htpasswd.go +++ b/htpasswd.go @@ -1,5 +1,3 @@ -// +build go1.4 - package main /* diff --git a/router.go b/router.go index 47e0ccf..514072e 100644 --- a/router.go +++ b/router.go @@ -1,5 +1,3 @@ -// +build go1.4 - package main import ( diff --git a/router_test.go b/router_test.go index d4da184..b776a9f 100644 --- a/router_test.go +++ b/router_test.go @@ -1,5 +1,3 @@ -// +build go1.4 - package main import ( diff --git a/server.go b/server.go index 42a3908..e7ece67 100644 --- a/server.go +++ b/server.go @@ -1,5 +1,3 @@ -// +build go1.4 - package main import (