aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2017-12-17 06:16:10 -0500
committerTucker Evans <tuckerevans24@gmail.com>2017-12-17 13:20:31 -0500
commit1654bb13fc99369d879390d3ce8dea9516860e64 (patch)
treeb91d0ff85de0bd38b3e18002cac9373104fa2fff
parent7789bbb00b2f9d826c5c04a519b2c8bb0fc004bd (diff)
CSC2621/assignments/search: Removed debug prints from Indexer
-rw-r--r--search/indexer.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/search/indexer.go b/search/indexer.go
index 9550c86..d95f126 100644
--- a/search/indexer.go
+++ b/search/indexer.go
@@ -128,7 +128,6 @@ func parseDoc(fd *os.File, f_info os.FileInfo) (*document, error) {
r_doc.text = strings.Fields(text);
r_doc.title = strings.Fields(t_text);
r_doc.length = len(r_doc.text) + len(r_doc.title);
- fmt.Println(r_doc.length)
return r_doc, nil;
}