summaryrefslogtreecommitdiff
path: root/src/pkg/crypto/x509/root.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/crypto/x509/root.go')
-rw-r--r--src/pkg/crypto/x509/root.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/pkg/crypto/x509/root.go b/src/pkg/crypto/x509/root.go
deleted file mode 100644
index 8aae14e09..000000000
--- a/src/pkg/crypto/x509/root.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2012 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package x509
-
-import "sync"
-
-var (
- once sync.Once
- systemRoots *CertPool
-)
-
-func systemRootsPool() *CertPool {
- once.Do(initSystemRoots)
- return systemRoots
-}