1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-26 21:05:00 +02:00

Removed unsued test structure

This commit is contained in:
Aaron Clawson 2021-12-01 17:05:18 +00:00 committed by GitHub
parent cbf8bad66c
commit bd3c3b20b7

View File

@ -41,14 +41,6 @@ func (l *testErrCatcher) Got() []string {
return []string(*l)
}
type logger struct {
l *log.Logger
}
func (l *logger) Handle(err error) {
l.l.Print(err)
}
func causeErr(text string) {
Handle(errors.New(text))
}