()
| 568 | } |
| 569 | |
| 570 | func (ss *SystemSettingsData) Open() error { |
| 571 | fnm := ss.Filename() |
| 572 | err := tomlx.Open(ss, fnm) |
| 573 | if len(ss.FavPaths) == 0 { |
| 574 | ss.FavPaths.setToDefaults() |
| 575 | } |
| 576 | return err |
| 577 | } |
| 578 | |
| 579 | // TimeFormat returns the Go time format layout string that should |
| 580 | // be used for displaying times to the user, based on the value of |
nothing calls this directly
no test coverage detected