syzkaller/pkg/vcs/freebsd.go
Dmitry Vyukov d4aacfdb59 pkg/vcs: remove unused functions
Bisect is not needed after introduction of Bisecter interface.
2019-03-20 10:34:16 +01:00

15 lines
300 B
Go

// Copyright 2019 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package vcs
type freebsd struct {
*git
}
func newFreeBSD(vm, dir string) *freebsd {
return &freebsd{
git: newGit(dir, nil),
}
}