Revert "Add code that would break ent if merged prior to stubmaker (#21634)" (#21693)

This reverts commit 502c2830c0.
This commit is contained in:
Nick Cabatoff
2023-07-14 09:05:34 -04:00
committed by GitHub
parent d01f354aa2
commit 359f1a614f
2 changed files with 0 additions and 29 deletions

View File

@@ -1,13 +0,0 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package vault
import (
"github.com/hashicorp/vault/vault/cluster"
)
func test() {
testStubmaker(cluster.Listener{})
testStubmaker2()
}

View File

@@ -1,16 +0,0 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
//go:build !enterprise
package vault
import (
"github.com/hashicorp/vault/vault/cluster"
"github.com/hashicorp/vault/vault/seal"
)
//go:generate go run github.com/hashicorp/vault/tools/stubmaker
func testStubmaker(_ cluster.Listener) {}
func testStubmaker2() *seal.Envelope { return nil }