decrease lint warnings

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
Marcel Hibbe 2021-06-07 14:01:00 +02:00 committed by Andy Scherzinger
parent fdf6b04fb8
commit d4e49a20bb
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ import javax.inject.Inject
class IncomingLocationMessageViewHolder(incomingView: View) : MessageHolders
.IncomingTextMessageViewHolder<ChatMessage>(incomingView) {
private val TAG = "LocationMessageViewHolder"
private val TAG = "LocMessageView"
var locationLon: String? = ""
var locationLat: String? = ""

View File

@ -42,7 +42,7 @@ import javax.inject.Inject
class OutcomingLocationMessageViewHolder(incomingView: View) : MessageHolders
.OutcomingTextMessageViewHolder<ChatMessage>(incomingView) {
private val TAG = "LocationMessageViewHolder"
private val TAG = "LocMessageView"
var locationLon: String? = ""
var locationLat: String? = ""

View File

@ -428,7 +428,7 @@ class LocationPickerController(args: Bundle) :
}
companion object {
private const val TAG = "LocationPicker"
private const val TAG = "LocPicker"
private const val REQUEST_PERMISSIONS_REQUEST_CODE = 1
}
}