1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00
This commit is contained in:
Cedric Beust 2016-04-23 05:20:41 -08:00
parent 575adc4424
commit fdcca3a1aa
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ import java.net.Socket
import java.nio.file.Paths import java.nio.file.Paths
import javax.inject.Inject import javax.inject.Inject
public class KobaltClient @Inject constructor() : Runnable { class KobaltClient @Inject constructor() : Runnable {
var outgoing: PrintWriter? = null var outgoing: PrintWriter? = null
override fun run() { override fun run() {

View file

@ -20,7 +20,7 @@ import java.util.*
import javax.inject.Inject import javax.inject.Inject
@Singleton @Singleton
public class KobaltServer @Inject constructor(val args: Args, val pluginInfo: PluginInfo) : Runnable, ICommandSender { class KobaltServer @Inject constructor(val args: Args, val pluginInfo: PluginInfo) : Runnable, ICommandSender {
// var outgoing: PrintWriter? = null // var outgoing: PrintWriter? = null
val pending = arrayListOf<CommandData>() val pending = arrayListOf<CommandData>()