aboutsummaryrefslogtreecommitdiffhomepage
path: root/dbus
diff options
context:
space:
mode:
Diffstat (limited to 'dbus')
-rw-r--r--dbus/proxy.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/dbus/proxy.go b/dbus/proxy.go
index 77307dc1..5e92e341 100644
--- a/dbus/proxy.go
+++ b/dbus/proxy.go
@@ -59,17 +59,6 @@ func (p *Proxy) String() string {
return "(unsealed dbus proxy)"
}
-// BwrapStatic builds static bwrap args. This omits any fd-dependant args.
-func (p *Proxy) BwrapStatic() []string {
- p.lock.RLock()
- defer p.lock.RUnlock()
-
- if p.bwrap == nil {
- return nil
- }
- return p.bwrap.Args()
-}
-
// Seal seals the Proxy instance.
func (p *Proxy) Seal(session, system *Config) error {
p.lock.Lock()