diff options
| author | Jeff Carr <[email protected]> | 2024-11-04 17:13:48 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-04 17:13:48 -0600 |
| commit | 4fa21db5a956a3364ed994fde1bb7b457ebccb00 (patch) | |
| tree | 16bb97e95e6183f77bbfa88f77cf1bd2837f1036 /common.go | |
| parent | 4f24f6972ab5d1519d0d7305c866af4dfff36b3b (diff) | |
report cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'common.go')
| -rw-r--r-- | common.go | 33 |
1 files changed, 0 insertions, 33 deletions
@@ -100,39 +100,6 @@ func (r *RepoRow) LastTag() string { return r.lastTag.String() } -/* -// returns the state of the GO go.mod and go.sum files -// this is used to tell if they are valid and correctly reflect -// the versions of the other GUI packages -// at this point in time, there is _NO_ way to be check our -// be sure that anything will run with older versions -// because this are changing too often at this point -// TODO: revisit this in 2025 or 2026 -func (r *RepoRow) GoState() string { - if r == nil { - log.Info("GoState() r == nil") - return "goState == nil" - } - if r.goState == nil { - log.Info("GoState() r.goState == nil") - return "goState == nil" - } - return r.goState.String() -} - -func (r *RepoRow) SetGoState(s string) { - if r == nil { - log.Info("SetGoState() r == nil") - return - } - if r.goState == nil { - log.Info("goState == nil") - return - } - r.goState.SetText(s) -} -*/ - func (r *RepoRow) IsPerfect() bool { if r.gitState.String() == "PERFECT" { return true |
