Merge branch 'remove-getCurrentPage-' of sloum/bombadillo into develop

This commit is contained in:
Sloom Sloum Sluom IV 2019-11-28 14:54:19 -05:00 committed by Gitea
commit 9880fdffd0
1 changed files with 0 additions and 14 deletions

View File

@ -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