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

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Feb 24, 2020
1 parent e5c1e1c commit b788559
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/andromeda/araserver/Run.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import java.io.IOException
import com.andromeda.araserver.util.Port
import java.net.URL

object Run : NanoHTTPD(Port().main()) {
object Run : NanoHTTPD(Port().main()!!) {
private var keyWord: KeyWord? = null
private var model: ParserModel? = null
private var parser: Parser? = null
Expand Down Expand Up @@ -164,7 +164,7 @@ object Run : NanoHTTPD(Port().main()) {
model = ParserModel(`is`)
parser = ParserFactory.create(model)
keyWord = KeyWord(`is`!!)
println("Press any key to exit...")
println("start")


}
Expand Down

0 comments on commit b788559

Please sign in to comment.