Commit d9a84e44 authored by Leonardo Aramaki's avatar Leonardo Aramaki

Remove logs

parent ad94a19e
...@@ -62,7 +62,6 @@ abstract class BaseViewHolder<T : BaseViewModel<*>>( ...@@ -62,7 +62,6 @@ abstract class BaseViewHolder<T : BaseViewModel<*>>(
val manager = FlexboxLayoutManager(context, FlexDirection.ROW) val manager = FlexboxLayoutManager(context, FlexDirection.ROW)
recyclerView.layoutManager = manager recyclerView.layoutManager = manager
recyclerView.adapter = adapter recyclerView.adapter = adapter
println("* Update reactions ${it.reactions}")
adapter.addReactions(it.reactions.filterNot { it.unicode.startsWith(":") }) adapter.addReactions(it.reactions.filterNot { it.unicode.startsWith(":") })
} }
} }
......
...@@ -496,7 +496,6 @@ class ChatRoomPresenter @Inject constructor(private val view: ChatRoomView, ...@@ -496,7 +496,6 @@ class ChatRoomPresenter @Inject constructor(private val view: ChatRoomView,
//TODO: cache the commands //TODO: cache the commands
val commands = client.commands(0, 100).result val commands = client.commands(0, 100).result
view.populateCommandSuggestions(commands.map { view.populateCommandSuggestions(commands.map {
println("${it.command} - ${it.description}")
CommandSuggestionViewModel(it.command, it.description ?: "", listOf(it.command)) CommandSuggestionViewModel(it.command, it.description ?: "", listOf(it.command))
}) })
} catch (ex: RocketChatException) { } catch (ex: RocketChatException) {
......
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