Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
beepbeat committed May 13, 2018
1 parent 5b3c4c6 commit ca27cfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/LogHandler.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ val listenrc = rclistener()
val tailerfr = Tailer.create(LogFilefr, listenfr, 2000, true)
val tailerrc = Tailer.create(LogFileRc, listenrc, 2000, true)

enum class supportedClients{hexchat, mirc, ii}
enum class supportedClients{hexchat, mirc, ii, adiirc}


var frtailerStopped = false
Expand Down
3 changes: 1 addition & 2 deletions src/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import java.util.*
import kotlin.collections.ArrayList
import kotlin.concurrent.fixedRateTimer
import kotlin.properties.Delegates
import kotlin.system.exitProcess


class KeyProcessor : KeyListener{
Expand All @@ -45,7 +44,7 @@ class windowListen : WindowAdapter(){
override fun windowClosed(e: WindowEvent?) {
super.windowClosed(e)
terminal!!.exitPrivateMode()
exitProcess(0)
System.exit(0)
}
}

Expand Down

0 comments on commit ca27cfa

Please sign in to comment.