mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 15:15:51 +03:00
Remove java Boolean usage
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
449407870e
commit
5178e43813
1 changed files with 3 additions and 3 deletions
|
@ -64,7 +64,7 @@ class RemoteTrashbinRepository internal constructor(private val user: User, priv
|
|||
result.isSuccess
|
||||
} catch (e: CreationException) {
|
||||
Log_OC.e(this, "Cannot create client", e)
|
||||
java.lang.Boolean.FALSE
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -94,7 +94,7 @@ class RemoteTrashbinRepository internal constructor(private val user: User, priv
|
|||
result.isSuccess
|
||||
} catch (e: CreationException) {
|
||||
Log_OC.e(this, "Cannot create client", e)
|
||||
java.lang.Boolean.FALSE
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -164,7 +164,7 @@ class RemoteTrashbinRepository internal constructor(private val user: User, priv
|
|||
false
|
||||
}
|
||||
} catch (e: CreationException) {
|
||||
java.lang.Boolean.FALSE
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue