(other *Language)
| 21 | } |
| 22 | |
| 23 | func (l *Language) equals(other *Language) bool { |
| 24 | return l.Id == other.Id && |
| 25 | l.Name == other.Name && |
| 26 | l.Version == other.Version && |
| 27 | l.DtRelease.Equal(other.DtRelease) |
| 28 | } |
| 29 | |
| 30 | func (l *Language) loadFromSql(Id int64, db *sql.DB) error { |
| 31 |
no outgoing calls
no test coverage detected