aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vmimpl
diff options
context:
space:
mode:
Diffstat (limited to 'vm/vmimpl')
-rw-r--r--vm/vmimpl/vmimpl.go12
1 files changed, 5 insertions, 7 deletions
diff --git a/vm/vmimpl/vmimpl.go b/vm/vmimpl/vmimpl.go
index bd565c8aa..a9afdc1f1 100644
--- a/vm/vmimpl/vmimpl.go
+++ b/vm/vmimpl/vmimpl.go
@@ -129,18 +129,16 @@ func (err InfraError) InfraError() (string, []byte) {
}
// Register registers a new VM type within the package.
-func Register(typ string, ctor ctorFunc, allowsOvercommit, netCompression bool) {
+func Register(typ string, ctor ctorFunc, allowsOvercommit bool) {
Types[typ] = Type{
- Ctor: ctor,
- Overcommit: allowsOvercommit,
- NetCompression: netCompression,
+ Ctor: ctor,
+ Overcommit: allowsOvercommit,
}
}
type Type struct {
- Ctor ctorFunc
- Overcommit bool
- NetCompression bool
+ Ctor ctorFunc
+ Overcommit bool
}
type ctorFunc func(env *Env) (Pool, error)