Compare commits

..

No commits in common. "a37ef637ce03e04df4de2f961d668677793eb975" and "a7591c9868dab6e243fb687f2cb50801f645957b" have entirely different histories.

2 changed files with 0 additions and 6 deletions

View File

@ -55,10 +55,6 @@ func (restaurant *Restaurant) clearMenus() {
}
}
func (restaurant *Restaurant) clearPermanentMenus() {
restaurant.permanent = []Meal{}
}
func (restaurant *Restaurant) MarshalJSON() ([]byte, error) {
return json.Marshal(&RestaurantJSON{
Id: restaurant.id,
@ -70,7 +66,6 @@ func (restaurant *Restaurant) MarshalJSON() ([]byte, error) {
func (restaurant *Restaurant) GetSpecificDayObject(days []int) RestaurantJSON {
obj := RestaurantJSON{
Id: restaurant.id,
Restaurant: restaurant.name,
PermanentMeals: restaurant.permanent,
}

View File

@ -24,7 +24,6 @@ func NewTaoRestaurant(url string, name string, id int) *TaoRestaurant {
func (restaurant *TaoRestaurant) Parse() {
restaurant.clearMenus()
restaurant.clearPermanentMenus()
resp, err := http.Get(restaurant.url)
if err != nil {
return