Commit 8e803b79 authored by Filipe de Lima Brito's avatar Filipe de Lima Brito

Removes timber log.

parent 8344d9ee
...@@ -37,7 +37,6 @@ import kotlinx.android.synthetic.main.fragment_chat_room.* ...@@ -37,7 +37,6 @@ import kotlinx.android.synthetic.main.fragment_chat_room.*
import kotlinx.android.synthetic.main.message_attachment_options.* import kotlinx.android.synthetic.main.message_attachment_options.*
import kotlinx.android.synthetic.main.message_composer.* import kotlinx.android.synthetic.main.message_composer.*
import kotlinx.android.synthetic.main.message_list.* import kotlinx.android.synthetic.main.message_list.*
import timber.log.Timber
import java.util.concurrent.TimeUnit import java.util.concurrent.TimeUnit
import java.util.concurrent.atomic.AtomicInteger import java.util.concurrent.atomic.AtomicInteger
import javax.inject.Inject import javax.inject.Inject
...@@ -715,10 +714,8 @@ class ChatRoomFragment : Fragment(), ChatRoomView, EmojiKeyboardListener, EmojiR ...@@ -715,10 +714,8 @@ class ChatRoomFragment : Fragment(), ChatRoomView, EmojiKeyboardListener, EmojiR
private fun sendTypingStatus(charSequence: CharSequence) { private fun sendTypingStatus(charSequence: CharSequence) {
if (charSequence.isNotBlank()) { if (charSequence.isNotBlank()) {
Timber.i("SENDING $charSequence")
presenter.sendTyping() presenter.sendTyping()
} else { } else {
Timber.i("SENDING FOR NOT $charSequence")
presenter.sendNotTyping() presenter.sendNotTyping()
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment