Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
tweaking text inputs and trying to learn Freaking t sql
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Feb 4, 2020
1 parent 7e3e3fb commit e70a1ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/andromeda/araserver/persona/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class Main {
val topics = graph?.let { SortWords(keyWord, term).getNN(it) }
println(topics)
var text = ""
topics?.forEach { text += " $it" }
topics?.forEach { text += " ${it.word}" }
println(text)
return GetDbArray().likes(text)
return GetDbArray().likes(text.removePrefix(" "))
}
}

0 comments on commit e70a1ab

Please sign in to comment.