Removed unused code

This commit is contained in:
Deluan 2021-10-22 18:55:10 -04:00 committed by Deluan Quintão
parent 806b13cf42
commit c73f64ee3a
4 changed files with 2 additions and 210 deletions

View file

@ -35,9 +35,9 @@ func (c Criteria) MarshalJSON() ([]byte, error) {
aux := struct {
All []Expression `json:"all,omitempty"`
Any []Expression `json:"any,omitempty"`
Sort string `json:"sort"`
Sort string `json:"sort,omitempty"`
Order string `json:"order,omitempty"`
Limit int `json:"limit"`
Limit int `json:"limit,omitempty"`
Offset int `json:"offset,omitempty"`
}{
Sort: c.Sort,