deprecate

This commit is contained in:
Jeff Carr 2024-02-18 17:57:12 -06:00
parent 1bafc298d3
commit be73f6af0e
1 changed files with 4 additions and 2 deletions

View File

@ -166,11 +166,13 @@ func (rs *RepoStatus) Build() bool {
return false return false
} }
func (rs *RepoStatus) GetGoSumStatus() string { // moved to repolist
func (rs *RepoStatus) GetGoSumStatusOld() string {
return rs.goSumStatus.String() return rs.goSumStatus.String()
} }
func (rs *RepoStatus) SetGoSumStatus(s string) { // moved to repolist
func (rs *RepoStatus) SetGoSumStatusOld(s string) {
rs.goSumStatus.SetText(s) rs.goSumStatus.SetText(s)
} }