mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-26 15:05:44 +03:00
remove some logging
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
7745e75f5f
commit
227b7bc080
3 changed files with 0 additions and 10 deletions
|
@ -363,13 +363,10 @@ class MainActivity : BaseActivity(), ActionBarProvider {
|
|||
}
|
||||
|
||||
override fun onBackPressed() {
|
||||
Log.d(TAG, "onBackPressed")
|
||||
if (router!!.getControllerWithTag(LockedController.TAG) != null) {
|
||||
return
|
||||
}
|
||||
|
||||
if (!router!!.handleBack()) {
|
||||
Log.d(TAG, "back press was not handled by top controller. call onBackPressed...")
|
||||
super.onBackPressed()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1803,8 +1803,6 @@ class ChatController(args: Bundle) :
|
|||
if (inConversation) {
|
||||
Log.d(TAG, "execute joinRoomWithPassword in onAttach")
|
||||
joinRoomWithPassword()
|
||||
// replace with getRoomInfo() ? otherwise getRoomInfo is not called periodically after coming
|
||||
// back to app when it was in background
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1905,8 +1903,6 @@ class ChatController(args: Bundle) :
|
|||
}
|
||||
|
||||
private fun joinRoomWithPassword() {
|
||||
Log.d(TAG, "joinRoomWithPassword. currentConversation==null ?:" + (currentConversation == null).toString())
|
||||
|
||||
if (!validSessionId()) {
|
||||
Log.d(TAG, "sessionID was not valid -> joinRoom")
|
||||
var apiVersion = 1
|
||||
|
|
|
@ -245,9 +245,6 @@ abstract class BaseController(@LayoutRes var layoutRes: Int, args: Bundle? = nul
|
|||
calculateValidParentController()
|
||||
}
|
||||
actionBar!!.title = title
|
||||
Log.d(TAG, "setTitle: $title")
|
||||
} else {
|
||||
Log.d(TAG, "title was not set!!!!")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue