widgets: gofmt
Signed-off-by: Wagner Riffel <wgrriffel@gmail.com>
This commit is contained in:
parent
1d04c2a292
commit
e28f45b5aa
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ func (s *msgSorter) Less(i, j int) bool {
|
||||||
msgI := s.store.Messages[s.uids[i]]
|
msgI := s.store.Messages[s.uids[i]]
|
||||||
msgJ := s.store.Messages[s.uids[j]]
|
msgJ := s.store.Messages[s.uids[j]]
|
||||||
if msgI == nil && msgJ == nil {
|
if msgI == nil && msgJ == nil {
|
||||||
return false; // doesn't matter which order among nulls
|
return false // doesn't matter which order among nulls
|
||||||
} else if msgI == nil && msgJ != nil {
|
} else if msgI == nil && msgJ != nil {
|
||||||
return true // say i is before j so we sort i to bottom
|
return true // say i is before j so we sort i to bottom
|
||||||
} else if msgI != nil && msgJ == nil {
|
} else if msgI != nil && msgJ == nil {
|
||||||
|
|
Loading…
Reference in a new issue