remove unused functions

mine
Mike Hummel 2020-02-18 00:36:09 +01:00
parent 045f39cd88
commit d50539a71e
2 changed files with 0 additions and 18 deletions

View File

@ -151,18 +151,6 @@ func (p *Pod) attachCmd(evt *tcell.EventKey) *tcell.EventKey {
return nil
}
func (p *Pod) shellIn(path, co string) {
p.Stop()
shellIn(p.App(), path, co)
p.Start()
}
func (p *Pod) attachIn(path, co string) {
p.Stop()
attachIn(p.App(), path, co)
p.Start()
}
// ----------------------------------------------------------------------------
// Helpers...

View File

@ -319,12 +319,6 @@ func (x *Xray) attachCmd(evt *tcell.EventKey) *tcell.EventKey {
return nil
}
func (x *Xray) attachIn(path, co string) {
x.Stop()
attachIn(x.app, path, co)
x.Start()
}
func (x *Xray) viewCmd(evt *tcell.EventKey) *tcell.EventKey {
spec := x.selectedSpec()
if spec == nil {