Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
soywiz committed Jul 3, 2024
1 parent a06c466 commit 5f8e78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion korge-ipc/src/main/kotlin/korlibs/korge/ipc/KorgeIPC.kt
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class KorgeIPC(val path: String = KorgeIPCInfo.DEFAULT_PATH, val isServer: Boole

val availableEvents get() = synchronized(_events) { _events.size }
fun writeEvent(e: IPCPacket) {
println("writeEvent: $e")
//println("writeEvent: $e")
synchronized(connectedSockets) {
for (socket in connectedSockets) {
socket.writePacket(e)
Expand Down

0 comments on commit 5f8e78d

Please sign in to comment.