Remove unused functions getCurrentPageRawData & getCurrentPageUrl

This commit is contained in:
asdf 2019-11-26 12:24:16 +11:00
parent 76cf3da4ae
commit ebd33c6dbd
1 changed files with 1 additions and 15 deletions

View File

@ -414,7 +414,7 @@ func (c *client) doCommandAs(action string, values []string) {
c.SetMessage("Cannot set READ ONLY setting 'configlocation'", true)
c.DrawMessage()
return
}
}
err := saveConfig()
if err != nil {
c.SetMessage("Value set, but error saving config to file", true)
@ -483,20 +483,6 @@ func (c *client) doLinkCommandAs(action, target string, values []string) {
}
}
func (c *client) getCurrentPageUrl() (string, error) {
if c.PageState.Length < 1 {
return "", fmt.Errorf("There are no pages in history")
}
return c.PageState.History[c.PageState.Position].Location.Full, nil
}
func (c *client) getCurrentPageRawData() (string, error) {
if c.PageState.Length < 1 {
return "", fmt.Errorf("There are no pages in history")
}
return c.PageState.History[c.PageState.Position].RawContent, nil
}
func (c *client) saveFile(u Url, name string) {
var file []byte
var err error