Skip to content

Commit

Permalink
Removed debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Borders committed Nov 8, 2018
1 parent 84c2c1a commit 8aea8eb
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions bible.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,8 @@ import (
"archive/tar"
"compress/gzip"
"encoding/json"
"fmt"
"io"
"os"
"path"
"runtime"
)

// Bible contains the old testament and new testament
Expand All @@ -23,12 +20,6 @@ const newTestamentFilename = "new_testament.json"

// NewBible creates a new bible instance
func NewBible() *Bible {
_, filename, _, ok := runtime.Caller(0)
if !ok {
panic("No caller information")
}
fmt.Printf("Filename : %q, Dir : %q\n", filename, path.Dir(filename))

bible := &Bible{}

f, _ := os.Open(bibleTar)
Expand Down

0 comments on commit 8aea8eb

Please sign in to comment.