mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-21 20:45:29 +03:00
Migrate SettingsController to kotlin + viewbinding
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
19186feb5f
commit
84fea0ba80
4 changed files with 1067 additions and 1037 deletions
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -30,11 +30,7 @@ import kotlinx.android.parcel.Parcelize
|
|||
data class GenericOverall(
|
||||
@JsonField(name = ["meta"])
|
||||
var meta: GenericMeta? = null
|
||||
) : IGenericOCS, Parcelable {
|
||||
) : Parcelable {
|
||||
// This constructor is added to work with the 'com.bluelinelabs.logansquare.annotation.JsonObject'
|
||||
constructor() : this(null)
|
||||
|
||||
override fun getGenericMeta(): GenericMeta? {
|
||||
return meta
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
build:
|
||||
maxIssues: 91
|
||||
maxIssues: 89
|
||||
weights:
|
||||
# complexity: 2
|
||||
# LongParameterList: 1
|
||||
|
|
Loading…
Reference in a new issue