diff options
Diffstat (limited to 'model/recipe_step.go')
-rw-r--r-- | model/recipe_step.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/model/recipe_step.go b/model/recipe_step.go index 980d312..dc2a831 100644 --- a/model/recipe_step.go +++ b/model/recipe_step.go @@ -1,9 +1,5 @@ package model -import ( - "log" -) - type RecipeStep struct { Id string // FIXME has to be uint RecipeId string // FIXME has to be uint @@ -11,10 +7,6 @@ type RecipeStep struct { Text string } -func (d *RecipeStep) String() string { - return d.Text -} - func (d *RecipeStep) FromDB() error { query, err := GetSql(`recipe-step-select`) if err != nil { @@ -28,6 +20,5 @@ func (d *RecipeStep) FromDB() error { &d.Text, ) - log.Printf("d.Text: %s %s %s %s\n", d.Id, d.RecipeId, d.Index, d.Text) return err } |